Hopefully this fixes the release error

This commit is contained in:
Blake Ridgway 2025-03-20 07:57:23 -05:00
parent 18faf4d1e3
commit c71fe67fb8

View file

@ -2,8 +2,6 @@ name: Build AppImage, Windows EXE and Publish Release
on:
push:
branches:
- main
tags:
- 'v*.*.*'
workflow_dispatch:
@ -20,6 +18,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.ref }}
- name: Set up Python
uses: actions/setup-python@v4
@ -81,6 +82,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.ref }}
- name: Set up Python
uses: actions/setup-python@v4
@ -120,7 +124,7 @@ jobs:
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref }}
tag_name: ${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}