Skip to content

pass type to interceptor #43

pass type to interceptor

pass type to interceptor #43

Workflow file for this run

name: Build and push
on:
push:
branches: [master]
paths:
- "src/**"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: "uwu/neptune-builds"
path: "builds"
token: ${{ secrets.LINK_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: |
npm i -g pnpm
pnpm i
- name: Build
run: npm run build
- name: Push builds
run: |
rm $GITHUB_WORKSPACE/builds/* || true
cp -r dist/* $GITHUB_WORKSPACE/builds || true
cd $GITHUB_WORKSPACE/builds
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Actions"
git add .
git commit -m "Build $GITHUB_SHA" || exit 0
git push