diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml new file mode 100644 index 0000000..d77018d --- /dev/null +++ b/.github/workflows/tag.yml @@ -0,0 +1,17 @@ +name: Build and Deploy + +on: + push: + tags: + - '*' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Print tag + run: echo "Tag is ${{ github.ref }}"