pipeline-test-subsequent-wo.../.gitea/workflows/commit.yml
Oliver Lippert 6c10a9e4e9
Some checks failed
on push / build (push) Failing after 7s
add empty commit beside tag
2024-02-01 23:55:27 +01:00

21 lines
446 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 commit -m "empty commit" --allow-empty
git tag ${{ github.run_number }}
git push origin --all