rename to Forgejo
All checks were successful
on push / build (push) Successful in 3s
on tags / build (push) Successful in 2s

This commit is contained in:
Oliver Lippert 2024-02-09 19:10:28 +01:00
parent af6309d249
commit ea760fa1cb
Signed by: oliver
GPG key ID: 4AE99C459BC7D2B3
2 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,20 @@
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 }}

View file

@ -0,0 +1,17 @@
name: on tags
on:
push:
tags:
- '*'
jobs:
build:
runs-on: docker
steps:
- name: Checkout
uses: https://github.com/actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Ref
shell: bash
run: echo ${{ github.ref }}