pipeline-test-subsequent-wo.../.gitea/workflows/commit.yml

21 lines
412 B
YAML
Raw Normal View History

2024-02-01 23:38:28 +01:00
name: on push
on:
push:
2024-02-01 23:42:06 +01:00
branches:
- main
2024-02-01 23:38:28 +01:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2024-02-01 23:43:36 +01:00
with:
token: ${{ secrets.MAINTAINER_TOKEN }}
2024-02-01 23:38:28 +01:00
2024-02-01 23:42:06 +01:00
- name: Push Git Tag
run: |
git tag ${{ github.run_number }}
2024-02-02 00:17:50 +01:00
git push origin ${{ github.run_number }}