Skip to content

Commit

Permalink
fix: incorrect filename in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alterNERDtive committed Feb 22, 2024
1 parent 2600fa9 commit 1e5560c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .forgejo/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
on:
push:
tags:
- '*'
- "*"

jobs:
build:
Expand All @@ -26,13 +26,13 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '>=1.20.1'
go-version: ">=1.20.1"

- name: Draft release
uses: https://gitea.com/actions/release-action@main
with:
body: ${{ env.release_body }}
files: |-
bg3-mod-profiles.zip
bg3-mod-profiles-for-linux.zip
draft: true
api_key: '${{ secrets.RELEASE_TOKEN }}'
api_key: "${{ secrets.RELEASE_TOKEN }}"

0 comments on commit 1e5560c

Please sign in to comment.