Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
9FS committed Sep 18, 2024
1 parent e66fa99 commit 2811324
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/on tag deploy on github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:

- name: "TAG"
id: "tag"
run: "echo \"TAG=$(git describe --tags --abbrev=0 --match '*')\" >> $GITHUB_OUTPUT" # get tag, save in TAG, push to output
run: "echo \"TAG=$(git describe --tags --abbrev=0)\" >> $GITHUB_OUTPUT" # get tag, save in TAG, push to output

- name: "TAG_PREVIOUS"
id: "tag_previous"
run: "echo \"TAG_PREVIOUS=$(git describe --tags --abbrev=0 --match '*' HEAD^)\" >> $GITHUB_OUTPUT" # get previous tag, save in TAG_PREVIOUS, push to output
run: "echo \"TAG_PREVIOUS=$(git describe --tags --abbrev=0 HEAD~1)\" >> $GITHUB_OUTPUT" # get previous tag, save in TAG_PREVIOUS, push to output

- name: "TODAY"
id: "today"
Expand Down

0 comments on commit 2811324

Please sign in to comment.