Skip to content

Commit

Permalink
Update godot.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Makosai committed Oct 5, 2023
1 parent f15e28a commit 963482e
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions .github/workflows/godot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ jobs:
matrix:
platform: [win64] #, linux, mac]
steps:
- name: Format Tag Name
id: replace_string
uses: frabert/replace-string-action@v2
with:
pattern: '\.'
string: ${{ github.ref_name }}
replace-with: '_'
- uses: actions/checkout@v2
with:
lfs: false
Expand All @@ -23,28 +30,16 @@ jobs:
name: "Reia.exe"
preset: ${{ matrix.platform }}
debugMode: "false"
- name: Get Tag Name
id: tag_name
uses: revam/gh-action-get-tag-and-version@v1
with:
tag: ${{ github.ref }}
- name: Format Tag Name
id: replace_string
uses: frabert/replace-string-action@v2
with:
pattern: '\.'
string: ${{ steps.tag_name.outputs.tag }}
replace-with: '_'
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag_name.outputs.tag }}
release_name: ${{ steps.tag_name.outputs.tag }}
tag_name: ${{ github.ref_name }}
release_name: ${{ github.ref_name }}
body: |
# Reia - `${{ steps.tag_name.outputs.tag }}`
# Reia - `${{ github.ref_name }}`
...
Expand Down

0 comments on commit 963482e

Please sign in to comment.