Skip to content

[azure] Set Xcode 15 #88

[azure] Set Xcode 15

[azure] Set Xcode 15 #88

Workflow file for this run

name: WASM
on: push
jobs:
wasm:
name: WebAssembly
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: Install git
run: |
pacman -Syy --noconfirm
pacman -S git --noconfirm
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: 'recursive'
persist-credentials: false
fetch-depth: 0
- name: Dependencies
run: |
./ci/wasm.deps.sh
- name: Build
run: |
./ci/wasm.build.sh
- name: Deploy
run: |
./ci/wasm.deploy.sh
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.API_TOKEN_GITHUB }}
branch: 'main'
force: true
directory: './site'
repository: 'ossia/score-web'