Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rainlizard authored Dec 5, 2023
1 parent d86e785 commit fb40341
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ jobs:
FULL_VERSION="$MAJOR_MINOR.$PATCH"
echo "FULL_VERSION=$FULL_VERSION" >> $GITHUB_ENV
- name: Download Artifacts from Build Workflow
uses: dawidd6/action-download-artifact@v2
with:
# Replace with your workflow file name, e.g., 'main.yml'
workflow: main.yml
# Optional: Specify the name of artifacts if you want to download specific ones
# name: the-artifact-name
# Optional: Specify the path where to store downloaded artifacts
# path: path-to-directory

- name: Create Git Tag
run: |
git tag $FULL_VERSION
Expand All @@ -34,8 +44,6 @@ jobs:
draft: false
prerelease: false

# Add steps to download artifacts from the build workflow

# Add steps to upload build artifacts to GitHub Release
# Steps to upload build artifacts to GitHub Release

# Add steps for publishing the game to itch.io

0 comments on commit fb40341

Please sign in to comment.