Merge pull request #505 from codeceptjs/dependabot/npm_and_yarn/maste… #137
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 website | |
jobs: | |
publish-npm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
registry-url: https://registry.npmjs.org/ | |
- name: Install deps | |
run: npm i | |
- name: deployment | |
run: ./runok.js publish | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |