1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

feat: release extension

This commit is contained in:
Casey Lee 2023-01-20 10:10:20 -08:00
parent 06249a9225
commit d5753c760d

25
.github/workflows/gh-extension.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: gh-extension
on:
workflow_dispatch
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- name: Release extension
uses: actions/github-script@v5
with:
github-token: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
script: |
const mainRef = github.rest.git.getRef({
owner: 'nektos',
repo: 'gh-act',
ref: 'heads/main',
});
github.rest.git.createRef({
owner: 'nektos',
repo: 'gh-act',
ref: 'refs/tags/v0.2.39',
sha: mainRef.object.sha,
});