Delete .forgejo/workflows/build.yml

This commit is contained in:
Ethan O'Brien 2024-08-17 04:08:45 +00:00
parent ad8eb76d48
commit 8fe31a4ee9

View file

@ -1,33 +0,0 @@
name: Build wine
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
shell: bash
run: |
bash build.sh
- name: Extract version from build.sh
shell: bash
run: |
echo "VER=$(grep "^tag" build.sh | sed -E 's/tag\s*=\s*["]([^"]*)["]/\1/')" >> $GITHUB_ENV
- name: "Isolate build files"
shell: bash
run: |
mkdir dist/ && mv *.tar.* dist/
- uses: actions/forgejo-release@v1
with:
direction: upload
release-dir: dist/
release-notes: "note"
tag: ${{ env.VER }}
title: Wine ${{ env.VER }}
token: ${{ secrets.GITHUB_TOKEN }}