workflow
This commit is contained in:
parent
a9db403d13
commit
a5aed2b2b8
1 changed files with 4 additions and 3 deletions
7
.github/workflows/main.yml
vendored
7
.github/workflows/main.yml
vendored
|
@ -8,6 +8,10 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# Step 1: Download the latest release tarball
|
||||
- name: Download Latest Release
|
||||
run: |
|
||||
|
@ -23,9 +27,6 @@ jobs:
|
|||
extracted_dir=$(ls app-release | head -n 1)
|
||||
mv "app-release/$extracted_dir" app-release/source
|
||||
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# Step 3: Parse version.txt
|
||||
- name: Parse version.txt
|
||||
id: parse_version
|
||||
|
|
Loading…
Reference in a new issue