Skip to content

Commit

Permalink
ci: fix generating version with action
Browse files Browse the repository at this point in the history
  • Loading branch information
gumaciel committed Oct 22, 2023
1 parent 8cf21ff commit fd9fa75
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ name: Build Android

on: workflow_dispatch

env:
TAG_NAME: Android_v3.5+
RELEASE_NAME: Android Compiled files for v3.5+

jobs:
android-template:
name: Compiling Gradle (Android)
Expand All @@ -15,7 +11,8 @@ jobs:
GODOT_VERSIONS: [3.5, 3.5.1, 3.5.2, 3.5.3, 4.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.1, 4.1.1, 4.1.2]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
ref: ${GITHUB_REF_NAME}

- name: Set plugin version on env
run: |
Expand Down Expand Up @@ -55,5 +52,5 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: artifacts_output/${{ env.OUTPUT_FILENAME }}
tag: ${{env.PLUGIN_VERSION}}
tag: v${{env.PLUGIN_VERSION}}
overwrite: true

0 comments on commit fd9fa75

Please sign in to comment.