This commit is contained in:
Joel Wachsler 2022-07-10 21:18:33 +00:00
parent 8a042fa5ff
commit 7be36d3285

View File

@ -27,12 +27,13 @@ jobs:
echo "::set-output name=should_publish::$SHOULD_PUBLISH" echo "::set-output name=should_publish::$SHOULD_PUBLISH"
- name: Result - name: Result
run: "The result is: ${{ steps.create-and-push-tag.outputs.should_publish }}" run: |
echo "The result is: ${{ steps.create-and-push-tag.outputs.should_publish }}"
publish: publish:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
needs: tag needs: tag
if: ${{ needs.tag.outputs.should_publish }} == "true" if: ${{ needs.tag.outputs.should_publish == "true" }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2