This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
version bump #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: App Deploy | |
on: | |
push: | |
branches: | |
- main | |
env: | |
ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
jobs: | |
build_vue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Environment | |
run: ./scripts/env.sh | |
- name: Enabeling pnpm | |
run: | | |
corepack enable | |
pnpm install | |
- id: Build-Vue | |
uses: eoussama/[email protected] | |
with: | |
usepnpm: true | |
username: 'nakamaorg' | |
reponame: 'langkama-online' | |
token: ${{ secrets.GITHUB_TOKEN }} |