release #27
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: Build and Release | |
on: | |
repository_dispatch: | |
types: [ release ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest] | |
node-version: [16.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- run: echo ${{github.event.client_payload.version}} | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Creating Private Key | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Node and Webpack | |
run: | | |
cd minerva_analysis | |
cd client | |
npm install | |
npm run start | |
rm -r node_modules | |
cd .. | |
cd .. | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: 3.9 | |
environment-file: requirements.yml | |
activate-environment: minerva_analysis | |
auto-activate-base: false | |
- name: Package Windows | |
if: startsWith(matrix.os,'windows') | |
shell: cmd /C CALL {0} | |
run: | | |
package_win.bat | |
- name: Rename Windows | |
if: startsWith(matrix.os,'windows') | |
shell: bash -l {0} | |
run: | | |
ls dist/ | |
mv dist/minerva_analysis_windows.exe "dist/Gater_Windows_${{github.event.client_payload.version}}.exe" | |
ls dist/ | |
- name: Package Mac | |
if: startsWith(matrix.os,'mac') | |
shell: bash -l {0} | |
run: | | |
./package_mac.sh Gater_Mac_${{github.event.client_payload.version}} | |
- name: Rename Mac | |
if: startsWith(matrix.os,'mac') | |
shell: bash -l {0} | |
run: | | |
cd dist | |
zip "Gater_Mac_${{github.event.client_payload.version}}.zip" "Gater_Mac_${{github.event.client_payload.version}}" | |
rm "Gater_Mac_${{github.event.client_payload.version}}" | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ github.event.client_payload.version }} | |
files: | | |
dist/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |