Build Frontend and Publish #17
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 Frontend | |
run-name: Build Frontend and Publish | |
on: | |
repository_dispatch: | |
types: [artalk-release] | |
jobs: | |
build_publish: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ui # set for building frontend | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Checkout latest tag | |
run: | | |
git fetch --prune --unshallow --tags -f | |
git checkout $(git describe --tags --abbrev=0) | |
- name: Use pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
registry-url: https://registry.npmjs.org/ | |
cache: 'pnpm' | |
cache-dependency-path: './ui/pnpm-lock.yaml' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Publish | |
run: pnpm publish -F artalk --no-git-checks | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# GitHub Packages | |
# | |
# Setup .npmrc file to publish to GitHub Packages | |
# - uses: actions/setup-node@v2 | |
# with: | |
# registry-url: 'https://npm.pkg.github.com' | |
# # Publish to GitHub Packages | |
# - run: npm publish | |
# env: | |
# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |