diff options
| author | Kevin Hoerr <kjhoerr@protonmail.com> | 2022-12-28 12:39:00 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-28 12:39:00 -0500 |
| commit | 67ce2de13d781b3408cca0f0bec055a2477db88e (patch) | |
| tree | a9f2ea6d46d54ddb1f264cd5da347448b59c7770 /.github/workflows | |
| parent | 338cf37a18f7176e0ee27c0a6ca66be09695521a (diff) | |
| download | submelon.dev-67ce2de13d781b3408cca0f0bec055a2477db88e.tar.gz submelon.dev-67ce2de13d781b3408cca0f0bec055a2477db88e.tar.bz2 submelon.dev-67ce2de13d781b3408cca0f0bec055a2477db88e.zip | |
Fix quotes in build workflow (#54)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c3137f7..26a091e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,7 @@ jobs: # modify version number if actual source files changed - name: Modify version number uses: mingjun97/file-regex-replace@v1 - if: steps.filter.outputs.source == "true" + if: steps.filter.outputs.source == 'true' with: regex: 'version: "[0-9]*",' replacement: 'version: "${{ steps.date.outputs.date }}",' |
