2025-02-14 19:41:07 +01:00
|
|
|
name: Create Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "v*"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: docker
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
2025-02-14 19:42:44 +01:00
|
|
|
uses: actions/checkout@v3
|
2025-02-14 19:41:07 +01:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.FORGEJO_TOKEN }}
|
2025-02-14 19:46:59 +01:00
|
|
|
|
2025-02-14 19:41:07 +01:00
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: '20'
|