Skip to content

Improved with mysql in Laravel #145

Improved with mysql in Laravel

Improved with mysql in Laravel #145

Workflow file for this run

name: publish
on:
pull_request:
push:
branches:
- "main"
env:
RUST_BACKTRACE: full
jobs:
deploy:
runs-on: ubuntu-latest
name: Publish to docs.wasmer.io
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Wasmer
uses: wasmerio/setup-wasmer@v2
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 8
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
# Publish to docs.wasmer.io
- name: Publish
run: wasmer deploy --non-interactive --publish-package --bump --registry https://registry.wasmer.io/graphql --token=${{ secrets.WASMER_CIUSER_PROD_TOKEN }}
if: github.ref_name == github.event.repository.default_branch