rename to Forgejo
This commit is contained in:
parent
af6309d249
commit
ea760fa1cb
2 changed files with 0 additions and 0 deletions
20
.forgejo/workflows/commit.yml
Normal file
20
.forgejo/workflows/commit.yml
Normal 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 }}
|
17
.forgejo/workflows/tag.yml
Normal file
17
.forgejo/workflows/tag.yml
Normal 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 }}
|
Loading…
Add table
Add a link
Reference in a new issue