Skip to content

Commit

Permalink
ci: fix double quotes on publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
shipperizer authored Oct 24, 2024
1 parent 5efcbe0 commit d932612
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ jobs:
GO111MODULE: "on"
- name: Set EOLs and version
run: |
echo EOL_STABLE=$(date -d "$(date +'%Y-%m-%d') +6 month" +%Y-%m-%d") >> $GITHUB_ENV
echo EOL_CANDIDATE=$(date -d "$(date +'%Y-%m-%d') +14 day" +%Y-%m-%d") >> $GITHUB_ENV
echo EOL_STABLE=$(date -d "$(date +'%Y-%m-%d') +6 month" "+%Y-%m-%d") >> $GITHUB_ENV
echo EOL_CANDIDATE=$(date -d "$(date +'%Y-%m-%d') +14 day" "+%Y-%m-%d") >> $GITHUB_ENV
echo IMAGE_VERSION_STABLE=$($YQ '.version | split(".").0' rockcraft.yaml) >> $GITHUB_ENV
echo IMAGE_VERSION_CANDIDATE=$($YQ '.version' rockcraft.yaml) >> $GITHUB_ENV
- name: Release
Expand Down

0 comments on commit d932612

Please sign in to comment.