-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add files for dev and prod envs for linux and windows
- Loading branch information
1 parent
719173b
commit 35ddd0d
Showing
4 changed files
with
135 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Deploy Linux Dev | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
#for uploading release exe | ||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
environment: prod | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: 'Create env file' | ||
working-directory: ${{ github.workspace }}/nt-app/ | ||
run: | | ||
touch .env | ||
echo VUE_APP_HOSTNAME=${{ vars.VUE_APP_HOSTNAME }} >> .env | ||
echo VUE_APP_NT_LOGIN_URL=${{ vars.VUE_APP_NT_LOGIN_URL }} >> .env | ||
echo VUE_APP_LOBBY_SERVER_WS_URL_BASE=${{ vars.VUE_APP_LOBBY_SERVER_WS_URL_BASE }} >> .env | ||
cat .env | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- run: yarn install | ||
- run: yarn workspace nt-app electron:build --publish never | ||
- run: ls ${{ github.workspace }}/nt-app/dist_electron/ | ||
- run: | | ||
mkdir ${{ github.workspace }}/build | ||
cp "${{ github.workspace }}/nt-app/dist_electron/latest-linux.yml" ${{ github.workspace }}/build/latest.yml | ||
cp "${{ github.workspace }}/nt-app/dist_electron/Noita-Together-Setup-*.AppImage ${{ github.workspace }}/build/ | ||
cp "${{ github.workspace }}/nt-app/dist_electron/Noita-Together-Setup-*.snap" ${{ github.workspace }}/build/ | ||
- name: Upload files to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ github.workspace }}/build/* | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
file_glob: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Deploy Linux Production | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
#for uploading release exe | ||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
environment: prod | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: 'Create env file' | ||
working-directory: ${{ github.workspace }}/nt-app/ | ||
run: | | ||
touch .env | ||
echo VUE_APP_HOSTNAME=${{ vars.VUE_APP_HOSTNAME }} >> .env | ||
echo VUE_APP_NT_LOGIN_URL=${{ vars.VUE_APP_NT_LOGIN_URL }} >> .env | ||
echo VUE_APP_LOBBY_SERVER_WS_URL_BASE=${{ vars.VUE_APP_LOBBY_SERVER_WS_URL_BASE }} >> .env | ||
cat .env | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- run: yarn install | ||
- run: yarn workspace nt-app electron:build --publish never | ||
- run: ls ${{ github.workspace }}/nt-app/dist_electron/ | ||
- run: | | ||
mkdir ${{ github.workspace }}/build | ||
cp "${{ github.workspace }}/nt-app/dist_electron/latest-linux.yml" ${{ github.workspace }}/build/latest.yml | ||
cp "${{ github.workspace }}/nt-app/dist_electron/Noita-Together-Setup-*.AppImage ${{ github.workspace }}/build/ | ||
cp "${{ github.workspace }}/nt-app/dist_electron/Noita-Together-Setup-*.snap" ${{ github.workspace }}/build/ | ||
- name: Upload files to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ github.workspace }}/build/* | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
file_glob: true |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Deploy Windows Production | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
#for uploading release exe | ||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
environment: prod | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: 'Create env file' | ||
working-directory: ${{ github.workspace }}/nt-app/ | ||
run: | | ||
touch .env | ||
echo VUE_APP_HOSTNAME=${{ vars.VUE_APP_HOSTNAME }} >> .env | ||
echo VUE_APP_NT_LOGIN_URL=${{ vars.VUE_APP_NT_LOGIN_URL }} >> .env | ||
echo VUE_APP_LOBBY_SERVER_WS_URL_BASE=${{ vars.VUE_APP_LOBBY_SERVER_WS_URL_BASE }} >> .env | ||
cat .env | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- run: yarn install | ||
- run: yarn workspace nt-app electron:build --publish never | ||
- run: ls ${{ github.workspace }}/nt-app/dist_electron/ | ||
- run: | | ||
mkdir ${{ github.workspace }}/build | ||
cp "${{ github.workspace }}/nt-app/dist_electron/latest.yml" ${{ github.workspace }}/build/latest.yml | ||
cp "${{ github.workspace }}/nt-app/dist_electron/Noita-Together-Setup-*.exe" ${{ github.workspace }}/build/ | ||
cp "${{ github.workspace }}/nt-app/dist_electron/Noita-Together-Setup-*.exe.blockmap" ${{ github.workspace }}/build/ | ||
- name: Upload files to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ${{ github.workspace }}/build/* | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
file_glob: true |