Skip to content

Commit

Permalink
feat: push ci_latest tag each time a commit is pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
tiankaima committed Apr 17, 2024
1 parent 9219485 commit 0733678
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: rickstaa/action-create-tag@v1
if: github.ref_type != 'tag'
with:
tag: "ci_latest"
tag_exists_error: false
force_push_tag: true
- uses: typst-community/setup-typst@v3
- name: Run
run: |
Expand All @@ -29,4 +35,4 @@ jobs:
if: github.ref_type == 'tag'
with:
name: "${{ github.ref_name }} — ${{ env.DATE }}"
files: "./build/*"
files: "./build/*"

0 comments on commit 0733678

Please sign in to comment.