chore(deps): update dependency rollup to v4.22.4 #353
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install Dependencies | |
run: | | |
npm install | |
- name: Run Copy | |
run: | | |
npm run copy | |
- name: Run Build | |
run: | | |
npm run build | |
- name: Run Publish | |
run: | | |
npm run publish | |
env: | |
EIK_TOKEN: ${{ secrets.EIK_TOKEN }} |