git tag on push to main
All checks were successful
on push / build (push) Successful in 7s

This commit is contained in:
Oliver Lippert 2024-02-01 23:42:06 +01:00
parent 0d50c0c2fd
commit 428a5eb5f5
Signed by: oliver
GPG key ID: 4AE99C459BC7D2B3

View file

@ -2,6 +2,8 @@ name: on push
on:
push:
branches:
- main
jobs:
build:
@ -10,6 +12,7 @@ jobs:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Ref
shell: bash
run: echo ${{ github.ref }}
- name: Push Git Tag
run: |
git tag ${{ github.run_number }}
git push origin ${{ github.run_number }}