diff --git a/.github/workflows/nightly-release.yaml b/.github/workflows/nightly-release.yaml index a92a2d9231..5935fc560c 100644 --- a/.github/workflows/nightly-release.yaml +++ b/.github/workflows/nightly-release.yaml @@ -23,7 +23,7 @@ jobs: name: Build, tag and publish Docker image runs-on: ubuntu-latest needs: check_code_change - if: needs.check_code_change.outputs.should_run == "true" + if: needs.check_code_change.outputs.should_run == 'true' steps: - name: Checkout repository uses: actions/checkout@v3 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 50eeded6ca..85f545c37b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,7 +24,7 @@ jobs: package-name: streetmerchant changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"ci","section":"Continuous Integration","hidden":false},{"type":"docs","section":"Documentation","hidden":false},{"type":"refactor","section":"Refactoring","hidden":false},{"type":"perf","section":"Performance","hidden":false},{"type":"test","section":"Tests","hidden":false}]' - name: Normalize tag name - if: steps.release.outputs.release_created == "true" + if: steps.release.outputs.release_created == 'true' id: normalize_tag runs: | tag=${{ steps.release.outputs.tag_name }} @@ -33,7 +33,7 @@ jobs: name: Build, tag, and publish runs-on: ubuntu-latest needs: release - if: needs.release.outputs.release_created == "true" + if: needs.release.outputs.release_created == 'true' steps: - name: Checkout repository uses: actions/checkout@v3