Skip to content

Commit

Permalink
ci: use single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jef committed Nov 28, 2022
1 parent cf83753 commit bfc5bfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down

0 comments on commit bfc5bfd

Please sign in to comment.