Skip to content

Commit

Permalink
chore(ci): add bump-tag action
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Dec 19, 2022
1 parent e73f593 commit 97c92bf
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/bump-tag.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
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

0 comments on commit 97c92bf

Please sign in to comment.