Skip to content

Commit

Permalink
Merge pull request #309 from werf/chore-add-taskfile
Browse files Browse the repository at this point in the history
chore: add taskfile
  • Loading branch information
ilya-lesikov authored Jun 23, 2023
2 parents 10d2f85 + 21bfd72 commit 6f6030f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Taskfile.dist.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: "3"

silent: true

tasks:
sign:
desc: 'Sign last version tag + origin/main and push signatures. Important vars: "refs".'
cmds:
- git fetch --tags -f
- git signatures pull {{.CLI_ARGS}}
- |
for ref in {{.refs | default "$(git tag --sort=v:refname | tail -n1) origin/main"}}; do
echo Signing $ref...
git signatures add {{.CLI_ARGS}} $ref
git signatures show {{.CLI_ARGS}} $ref
done
- git signatures push {{.CLI_ARGS}}

0 comments on commit 6f6030f

Please sign in to comment.