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