Release job #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release job | |
on: workflow_dispatch | |
env: | |
PYTHON_VERSION: "3.11" | |
jobs: | |
linux_release: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@master | |
- name: get-npm-version | |
id: package-version | |
uses: pchynoweth/[email protected] | |
- name: Use Node.js 20 | |
uses: actions/setup-node@master | |
with: | |
version: 20 | |
cache: npm | |
- run: npm ci | |
- run: npm run build:linux | |
shell: bash | |
env: | |
VERSION: ${{ steps.package-version.outputs.version }} | |
- name: Upload binaries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nuclear-binaries-linux | |
path: release/*.* | |
- name: Create a release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: v${{ steps.package-version.outputs.version }} | |
tag_name: v${{ steps.package-version.outputs.version }} | |
prerelease: true | |
files: release/*.* | |
- name: Inform AUR updater | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
repository: NuclearPlayer/nuclear-nightly-aur | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
event-type: release | |
client-payload: '{"tag": "v${{ steps.package-version.outputs.version }}"}' | |
- name: Inform Snapcraft updater | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
repository: NuclearPlayer/nuclear-nightly-snapcraft | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
event-type: release | |
client-payload: '{"tag": "v${{ steps.package-version.outputs.version }}"}' | |
- name: Inform Flatpak updater | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
repository: NuclearPlayer/nuclear-nightly-flatpak | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
event-type: release | |
client-payload: '{"tag": "v${{ steps.package-version.outputs.version }}"}' | |
mac_release: | |
runs-on: macos-12 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@master | |
- name: get-npm-version | |
id: package-version | |
uses: pchynoweth/[email protected] | |
- name: Use Node.js 20 | |
uses: actions/setup-node@master | |
with: | |
version: 20 | |
cache: npm | |
- name: install setup tools | |
run: | | |
sudo -H pip install setuptools | |
- run: npm ci | |
- run: npm run build:macos | |
shell: bash | |
env: | |
VERSION: ${{ steps.package-version.outputs.version }} | |
- name: Upload binaries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nuclear-binaries-mac | |
path: release/*.* | |
- name: Create a release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: v${{ steps.package-version.outputs.version }} | |
tag_name: v${{ steps.package-version.outputs.version }} | |
prerelease: true | |
files: release/*.* | |
mac_arm64_release: | |
runs-on: macos-14 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: get-npm-version | |
id: package-version | |
uses: pchynoweth/[email protected] | |
- name: Use Node.js 20 | |
uses: actions/setup-node@master | |
with: | |
version: 20 | |
cache: npm | |
- name: install setup tools | |
run: | | |
sudo -H pip install setuptools | |
- run: npm ci | |
- run: npm run build:macos-arm64 | |
shell: bash | |
env: | |
VERSION: ${{ steps.package-version.outputs.version }} | |
- name: Upload binaries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nuclear-binaries-mac-arm64 | |
path: release/*.* | |
- name: Create a release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: v${{ steps.package-version.outputs.version }} | |
tag_name: v${{ steps.package-version.outputs.version }} | |
prerelease: true | |
files: release/*.* | |
windows_release: | |
runs-on: windows-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@master | |
- name: get-npm-version | |
id: package-version | |
uses: pchynoweth/[email protected] | |
- name: Use Node.js 20 | |
uses: actions/setup-node@master | |
with: | |
version: 20 | |
cache: npm | |
- name: add git binaries to PATH | |
run: | | |
echo "C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
echo "C:\Program Files\Git\mingw64\libexec\git-core" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- run: npm ci | |
- run: npm run build:windows | |
shell: bash | |
env: | |
VERSION: ${{ steps.package-version.outputs.version }} | |
- name: Upload binaries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nuclear-binaries-windows | |
path: release/*.* | |
- name: Create a release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: v${{ steps.package-version.outputs.version }} | |
tag_name: v${{ steps.package-version.outputs.version }} | |
prerelease: true | |
files: release/*.* |