Make it use ref_name over ref...
Some checks failed
Render LaTeX and Publish Release / build (push) Failing after 56s

This commit is contained in:
Joshua Coles 2024-06-05 19:51:07 +01:00
parent f7067f0491
commit b0d6a33fd4

View File

@ -31,15 +31,15 @@ jobs:
- name: Run Tectonic - name: Run Tectonic
run: tectonic cv.tex run: tectonic cv.tex
- name: create Release - name: Create Release
uses: actions/create-release@v1 uses: actions/create-release@v1
id: create_release id: create_release
with: with:
draft: false draft: false
prerelease: false prerelease: false
# Ref will be tag in this context # Ref will be tag in this context
release_name: ${{ gitea.ref }} release_name: ${{ github.ref_name }}
tag_name: ${{ gitea.ref }} tag_name: ${{ github.ref_name }}
env: env:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}