Skip to content

Commit

Permalink
stable release: github actions updated: checkout@v3, setup-node@v4, a…
Browse files Browse the repository at this point in the history
…ction-gh-release@v2
  • Loading branch information
Obijuan committed Jun 16, 2024
1 parent fa5166d commit d3c2dfa
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# Checkout the master repo branch
- name: Checkout!
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master

Expand All @@ -53,7 +53,7 @@ jobs:
# Install Node
- name: Setup Nodejs version
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '21.1.0'

Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
#-- Create the Release (draft) and Upload Window binaries
- name: Create the Stable Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
VERSION: "${{steps.icestudio_json.outputs.icestudio_version}}"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -112,7 +112,7 @@ jobs:
# -- Upload the Linux binaries to the release
# ---------------------------------------
- name: Upload Linux64 binaries
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
VERSION: "${{steps.icestudio_json.outputs.icestudio_version}}"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -137,12 +137,12 @@ jobs:
steps:

- name: Checkout the master repo branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master

- name: Setup Nodejs version
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '21.1.0'

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
# -- Upload Mac binaries to the release
# ---------------------------------------
- name: 'Upload DMG/OSX64'
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
# VERSION: "${{fromJson(steps.icestudio_json.outputs.packageJson).version}}"
VERSION: "${{steps.icestudio_version_json.outputs.icestudio_version}}"
Expand All @@ -217,7 +217,7 @@ jobs:
steps:

# Checkout the develop branch
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: master

Expand All @@ -226,7 +226,7 @@ jobs:
run: ./scripts/preInstallArm64.sh

- name: Setup Nodejs version
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '19.3.0'

Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:
# -- Upload ARM binaries to the release
# ---------------------------------------
- name: 'Upload ZIP/Aarch64'
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
VERSION: "${{steps.icestudio_json.outputs.icestudio_version}}"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit d3c2dfa

Please sign in to comment.