Skip to content

Bump gpu-tex-enc to 1.2.5 (#86) #18

Bump gpu-tex-enc to 1.2.5 (#86)

Bump gpu-tex-enc to 1.2.5 (#86) #18

Workflow file for this run

name: Reusable Deploy
on:
push:
branches:
- main
- docs
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: |
git config --global user.name "$GITHUB_ACTOR"
git config --global user.email "[email protected]"
git remote set-url origin https://git:${GIT_PASS}@github.com/pixijs/assetpack.git
npm run deploy
env:
GIT_USER: $GITHUB_ACTOR
GIT_PASS: ${{ secrets.GITHUB_TOKEN }}