-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from Ryex/develop
Bump main to version 0.2.1
- Loading branch information
Showing
19 changed files
with
742 additions
and
406 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
.github/workflows/actions.yml → .github/workflows/action_deploy.yml
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
name: delopy main | ||
on: | ||
push: | ||
branches: | ||
|
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,63 @@ | ||
name: deploy preview to netlify | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- "!main" | ||
|
||
permissions: | ||
contents: read | ||
packages: read | ||
checks: write | ||
statuses: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v3 | ||
with: | ||
version: '8.15.7' | ||
- name: Install rust | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
- name: Install wasm-pack | ||
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | ||
- name: Build ic10lsp | ||
run: | | ||
RUST_BACKTRACE=1 cargo xtask build -p ic10lsp_wasm --release -- -- | ||
- name: Build ic10emu | ||
run: | | ||
RUST_BACKTRACE=1 cargo xtask build -p ic10emu_wasm --release -- -- | ||
- name: Build Page | ||
run: | | ||
cd www | ||
pnpm install | ||
pnpm build | ||
- name: Fix permissions | ||
run: | | ||
chmod -c -R +rX "www/dist/" | while read line; do | ||
echo "::warning title=Invalid file permissions automatically fixed::$line" | ||
done | ||
- name: Upload artifacts | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: www/dist | ||
- name: Deploy to Netlify | ||
uses: jsmrcaga/[email protected] | ||
with: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN_SECRET }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
NETLIFY_DEPLOY_TO_PROD: true | ||
install_command: "echo Skipping installing the dependencies" | ||
build_command: "echo Skipping building the web files" | ||
build_directory: www/dist | ||
- name: Status check | ||
uses: Sibz/[email protected] | ||
with: | ||
authToken: ${{ secrets.GITHUB_TOKEN }} | ||
context: Netlify preview | ||
state: success | ||
target_url: ${{ env.NETLIFY_PREVIEW_URL }} |
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,65 @@ | ||
|
||
name: netlify deploy-preview | ||
on: | ||
pull_request: | ||
types: ['opened', 'edited', 'synchronize'] | ||
branches: | ||
- develop | ||
- "!main" | ||
|
||
permissions: | ||
contents: read | ||
packages: read | ||
checks: write | ||
statuses: write | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v3 | ||
with: | ||
version: '8.15.7' | ||
- name: Install rust | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
- name: Install wasm-pack | ||
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | ||
- name: Build ic10lsp | ||
run: | | ||
RUST_BACKTRACE=1 cargo xtask build -p ic10lsp_wasm --release -- -- | ||
- name: Build ic10emu | ||
run: | | ||
RUST_BACKTRACE=1 cargo xtask build -p ic10emu_wasm --release -- -- | ||
- name: Build Page | ||
run: | | ||
cd www | ||
pnpm install | ||
pnpm build | ||
- name: Fix permissions | ||
run: | | ||
chmod -c -R +rX "www/dist/" | while read line; do | ||
echo "::warning title=Invalid file permissions automatically fixed::$line" | ||
done | ||
- name: Upload artifacts | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: www/dist | ||
- name: Deploy to Netlify | ||
uses: jsmrcaga/[email protected] | ||
with: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN_SECRET }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
install_command: "echo Skipping installing the dependencies" | ||
build_command: "echo Skipping building the web files" | ||
build_directory: www/dist | ||
deploy_alias: ${{ env.BRANCH_NAME }} | ||
- name: Status check | ||
uses: Sibz/[email protected] | ||
with: | ||
authToken: ${{ secrets.GITHUB_TOKEN }} | ||
context: Netlify preview | ||
state: success | ||
target_url: ${{ env.NETLIFY_PREVIEW_URL }} |
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 |
---|---|---|
|
@@ -5,3 +5,6 @@ target/ | |
Session.vim | ||
*.pyc | ||
package-lock.json | ||
|
||
# Local Netlify folder | ||
.netlify |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
Oops, something went wrong.