bunker/.gitea/workflows/release.yaml
SimonFJ20 07aabc16fc
Some checks failed
Release / build (push) Failing after 23s
use go
2024-09-26 02:32:41 +02:00

41 lines
791 B
YAML

name: Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Clone
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Install Go
uses: actions/setup-go@v5
- name: Compile
run: "deno task compile"
# - name: Upload Artifact
# uses: "https://gitea.com/actions/upload-artifact@v3"
# with:
# name: bunker-artifact
# path: bunker
#
- name: Release
id: use-go-action
uses: "https://gitea.com/actions/release-action@main"
with:
artifacts: "bunker"