chore(deps): update dependency vue to v3.4.8 #193
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: Publish | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Publish to Eik | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Install Dependencies | |
run: | | |
npm install | |
- name: Run Build | |
run: | | |
npm run build | |
- name: Run Copy | |
run: | | |
npm run copy | |
- name: Run Publish | |
run: | | |
npm run publish | |
env: | |
EIK_TOKEN: ${{ secrets.EIK_TOKEN }} |