Fix internal map paths in coop mission .scmap files on deploy #1088
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Checks | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - develop | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: docker/tilt:latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: azure/setup-helm@v5.0.0 | |
| - name: Create k8s Kind Cluster | |
| run: ctlptl create cluster kind --registry=ctlptl-registry | |
| - name: Cache Helm Output | |
| id: cache-helm-ooutput | |
| uses: actions/cache@v5 | |
| with: | |
| path: .helm-cache | |
| key: ${{ github.ref_name }} | |
| restore-keys: | | |
| develop | |
| ${{ github.base_ref }} | |
| - name: Test Using Local Config | |
| run: tilt ci --timeout "5m" | |