From 97c92bf894581094050e3bef8f0a4014c4770b4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Felipe=20Gon=C3=A7alves?= Date: Mon, 19 Dec 2022 13:28:15 -0300 Subject: [PATCH] chore(ci): add bump-tag action --- .github/workflows/bump-tag.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/bump-tag.yml diff --git a/.github/workflows/bump-tag.yml b/.github/workflows/bump-tag.yml new file mode 100644 index 00000000..1648e668 --- /dev/null +++ b/.github/workflows/bump-tag.yml @@ -0,0 +1,26 @@ +name: Build + +on: + push: + branches: + - main + +jobs: + SyncTag: + runs-on: ubuntu-22.04 + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Setup Deno + uses: denoland/setup-deno@v1.1.1 + with: + deno-version: v1.x # Run with latest stable Deno. + + - name: Cache Dependencies + run: deno task cache + + - name: Bump Tag + run: deno task bump-tag