This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
about page (tell me if i forgot something there) -> Posted at main #210
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: Build Vue | |
on: [push] | |
jobs: | |
build_vue: | |
runs-on: ubuntu-latest | |
name: Build Vue | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Yarn | |
# You may pin to the exact commit or the version. | |
# uses: mskelton/setup-yarn@2fd0f48147cbee4fd8a71723a3b86851d86ba46b | |
uses: mskelton/setup-yarn@main | |
with: | |
# Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm | |
cache: yarn | |
- id: Build-Vue | |
uses: xRealNeon/VuePagesAction@main | |
with: | |
username: 'Dwigoric' | |
reponame: 'CCAPDEV-Web-App' | |
token: ${{ secrets.GITHUB_TOKEN }} # Leave this line unchanged | |
useyarn: true |