chore: remove meteor.startup from unpin-message (#34020) #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
# .github/workflows/ci-preview-deploy.yml | |
name: Deploy GitHub Pages | |
concurrency: preview-deploy-${{ github.ref }} | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- develop | |
jobs: | |
deploy-preview: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rharkor/[email protected] | |
- name: Setup NodeJS | |
uses: ./.github/actions/setup-node | |
with: | |
node-version: 20.18.0 | |
deno-version: 1.37.1 | |
cache-modules: true | |
install: true | |
- name: Build | |
run: | | |
yarn turbo run build-preview | |
yarn turbo run .:build-preview-move | |
npx indexifier .preview --html --extensions .html > .preview/index.html | |
mv .preview ${{ github.ref_name }} | |
mkdir .preview | |
mv ${{ github.ref_name }} .preview | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: .preview | |
keep_files: true |