Skip to content

Commit

Permalink
workflows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shoce committed Aug 16, 2023
1 parent 1484bd6 commit 9f61996
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set VERSION
VERSION=$( echo "${{ github.event.repository.updated_at}}" | tr -d ':-TZ' )
VERSION=$( echo "${{ github.event.repository.updated_at}}" | tr -d 'TZ:-' )
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3
- name: version
run: |
VERSION=$( echo "${{ github.event.repository.updated_at}}" | tr -d '-:TZ' )
VERSION=$( echo "${{ github.event.repository.updated_at}}" | tr -d 'TZ:-' )
sed -i -e "s/__VERSION__/$VERSION/g" helm/Chart.yaml
cat helm/Chart.yaml
- name: push
Expand Down

0 comments on commit 9f61996

Please sign in to comment.