|
76 | 76 | # but also really annoying to build CI around when it needs secrets to work right.) |
77 | 77 | - id: plan |
78 | 78 | run: | |
79 | | - dist ${{ (!github.event.pull_request && format('host --steps=create --tag={0}', github.ref_name)) || 'plan' }} --tag=v0.1.0 --output-format=json > plan-dist-manifest.json |
| 79 | + dist ${{ (!github.event.pull_request && format('host --steps=create --tag={0}', github.ref_name)) || 'plan' }} --output-format=json > plan-dist-manifest.json |
80 | 80 | echo "dist ran successfully" |
81 | 81 | cat plan-dist-manifest.json |
82 | 82 | echo "manifest=$(jq -c "." plan-dist-manifest.json)" >> "$GITHUB_OUTPUT" |
@@ -147,7 +147,7 @@ jobs: |
147 | 147 | - name: Build artifacts |
148 | 148 | run: | |
149 | 149 | # Actually do builds and make zips and whatnot |
150 | | - dist build ${{ needs.plan.outputs.tag-flag }} --tag=v0.1.0 --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json |
| 150 | + dist build ${{ needs.plan.outputs.tag-flag }} --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json |
151 | 151 | echo "dist ran successfully" |
152 | 152 | - id: cargo-dist |
153 | 153 | name: Post-build |
@@ -199,7 +199,7 @@ jobs: |
199 | 199 | - id: cargo-dist |
200 | 200 | shell: bash |
201 | 201 | run: | |
202 | | - dist build ${{ needs.plan.outputs.tag-flag }} --tag=v0.1.0 --output-format=json "--artifacts=global" > dist-manifest.json |
| 202 | + dist build ${{ needs.plan.outputs.tag-flag }} --output-format=json "--artifacts=global" > dist-manifest.json |
203 | 203 | echo "dist ran successfully" |
204 | 204 |
|
205 | 205 | # Parse out what we just built and upload it to scratch storage |
@@ -248,7 +248,7 @@ jobs: |
248 | 248 | - id: host |
249 | 249 | shell: bash |
250 | 250 | run: | |
251 | | - dist host ${{ needs.plan.outputs.tag-flag }} --tag=v0.1.0 --steps=upload --steps=release --output-format=json > dist-manifest.json |
| 251 | + dist host ${{ needs.plan.outputs.tag-flag }} --steps=upload --steps=release --output-format=json > dist-manifest.json |
252 | 252 | echo "artifacts uploaded and released successfully" |
253 | 253 | cat dist-manifest.json |
254 | 254 | echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT" |
|
0 commit comments