Skip to content

Commit

Permalink
Fix syntax 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Feb 29, 2024
1 parent b0e2c8f commit a252371
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tag_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
fi
- name: Set up Asana templates
if: failure() || ${{ env.MERGE_OR_DELETE_FAILED == 'true' }}
if: failure() || env.MERGE_OR_DELETE_FAILED == 'true'
id: asana-failure-templates
run: |
if [[ ${{ steps.create-tag.outputs.tag-created }} == "true" ]]; then
Expand All @@ -156,15 +156,15 @@ jobs:
- name: Create Asana task on failure
id: create-task-on-failure
if: failure() || ${{ env.MERGE_OR_DELETE_FAILED == 'true' }}
if: failure() || env.MERGE_OR_DELETE_FAILED == 'true'
uses: ./.github/actions/asana-create-action-item
with:
access-token: ${{ secrets.ASANA_ACCESS_TOKEN }}
release-task-url: ${{ env.asana-task-url }}
template-name: ${{ steps.asana-failure-templates.outputs.task-template }}

- name: Report failure
if: failure() || ${{ env.MERGE_OR_DELETE_FAILED == 'true' }}
if: failure() || env.MERGE_OR_DELETE_FAILED == 'true'
uses: ./.github/actions/asana-log-message
env:
ASSIGNEE_ID: ${{ steps.create-task-on-failure.outputs.assignee-id }}
Expand Down

0 comments on commit a252371

Please sign in to comment.