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

20 lines
424 B
YAML

name: on push
on:
push:
branches:
- main
jobs:
build:
runs-on: docker
steps:
- name: Checkout
uses: https://github.com/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 }}