Skip to content

Commit

Permalink
Fixed release code.
Browse files Browse the repository at this point in the history
  • Loading branch information
kloptops committed Feb 25, 2024
1 parent 9b46e47 commit 252d7df
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-alpha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
# We only run manually
workflow_dispatch:

concurrency:
concurrency:
group: release # only 1 release at a time

jobs:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
id: create-zip
run: |
./do_release.sh "${{steps.version.outputs.release}}" "${{steps.version.outputs.version}}"
- name: Create md5 hashes
id: md5
run: |
Expand All @@ -85,7 +85,7 @@ jobs:
echo "file: $file"
md5sum "$file" | cut -f1 -d' ' > "$file.md5"
done
- name: "Prepare Release"
uses: ncipollo/release-action@v1
with:
Expand All @@ -95,7 +95,7 @@ jobs:
prerelease: false
replacesArtifacts: false
omitNameDuringUpdate: true
body: "Release: ${{steps.version.outputs.release}} (${{steps.version.outputs.version}})"
body: "Release: ${{steps.version.outputs.version}} (${{steps.version.outputs.release}})"
artifacts: "PortMaster.zip, PortMaster.zip.md5, version, version.json, Install*PortMaster.sh"
token: ${{ secrets.GITHUB_TOKEN }}
repo: ${{ steps.env.outputs.RELEASE_REPO }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
# We only run manually
workflow_dispatch:

concurrency:
concurrency:
group: release # only 1 release at a time

jobs:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
id: create-zip
run: |
./do_release.sh "${{steps.version.outputs.release}}" "${{steps.version.outputs.version}}"
- name: Create md5 hashes
id: md5
run: |
Expand All @@ -85,7 +85,7 @@ jobs:
echo "file: $file"
md5sum "$file" | cut -f1 -d' ' > "$file.md5"
done
- name: "Prepare Release"
uses: ncipollo/release-action@v1
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-stable.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: GUI Release Alpha
name: GUI Release Stable

on:
# We only run manually
workflow_dispatch:

concurrency:
concurrency:
group: release # only 1 release at a time

jobs:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
id: create-zip
run: |
./do_release.sh "${{steps.version.outputs.release}}" "${{steps.version.outputs.version}}"
- name: Create md5 hashes
id: md5
run: |
Expand All @@ -85,7 +85,7 @@ jobs:
echo "file: $file"
md5sum "$file" | cut -f1 -d' ' > "$file.md5"
done
- name: "Prepare Release"
uses: ncipollo/release-action@v1
with:
Expand All @@ -95,7 +95,7 @@ jobs:
prerelease: false
replacesArtifacts: false
omitNameDuringUpdate: true
body: "Release: ${{steps.version.outputs.release}} (${{steps.version.outputs.version}})"
body: "Release: ${{steps.version.outputs.version}} (${{steps.version.outputs.release}})"
artifacts: "PortMaster.zip, PortMaster.zip.md5, version, version.json, Install*PortMaster.sh"
token: ${{ secrets.GITHUB_TOKEN }}
repo: ${{ steps.env.outputs.RELEASE_REPO }}
Expand Down

0 comments on commit 252d7df

Please sign in to comment.