Skip to content

Commit

Permalink
preview deploy action
Browse files Browse the repository at this point in the history
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
  • Loading branch information
Ryex committed Apr 22, 2024
1 parent 982fe47 commit f70cb0c
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: delopy main
on:
push:
branches:
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/devlop-deploy-netlify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: deploy preview to netlify
on:
push:
branches:
- develop
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/action-netlify-deploy@v2.0.0
with:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN_SECRET }}
NETLIFY_SITE_ID: 739126f7-7f3a-464e-8295-1b2a978eef3b
NETLIFY_DEPLOY_TO_PROD: true
install_command: "echo Skipping installing the dependencies"
build_command: "echo Skipping building the web files"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ target/
Session.vim
*.pyc
package-lock.json

# Local Netlify folder
.netlify

0 comments on commit f70cb0c

Please sign in to comment.