pipeline-test-subsequent-wo.../.gitea/workflows/commit.yml
Oliver Lippert 69bfb2d6bc
All checks were successful
on push / build (push) Successful in 7s
tag with PAT
2024-02-01 23:43:36 +01:00

20 lines
412 B
YAML

name: on push
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
token: ${{ secrets.MAINTAINER_TOKEN }}
- name: Push Git Tag
run: |
git tag ${{ github.run_number }}
git push origin ${{ github.run_number }}