Skip to content

Commit

Permalink
fix: fix docker build tag v5
Browse files Browse the repository at this point in the history
  • Loading branch information
aldor007 committed Mar 15, 2022
1 parent 3ca170e commit b59f335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
script: |
const tagExec = await exec.getExecOutput('git', ['tag', '--points-at', 'HEAD'])
const tag = tagExec.stdout || tagExec.stderr
return tag.stdout.trim().replace('v', '');
return tag.trim().replace('v', '');
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
Expand Down

0 comments on commit b59f335

Please sign in to comment.