Add export #93
Workflow file for this run
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: Deploy Experiment app | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "packages/experiments/**" | |
- ".github/workflows/experiments-deploy.yml" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "packages/experiments/**" | |
- ".github/workflows/experiments-deploy.yml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
experiments-deploy-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: "npm" | |
- name: Install dependencies | |
shell: bash | |
run: npm install | |
- run: npm run ex:build | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
GA_TRACKING_ID: "G-PPE5XD2VKV" | |
- name: Deploy production build | |
uses: cloudflare/[email protected] | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_DEPLOY_API_TOKEN }} | |
workingDirectory: "packages/experiments/" | |
command: pages publish ".svelte-kit/cloudflare" --branch=${{ github.head_ref }} --project-name=hot-or-not-experiments --commit-dirty=true | |
env: | |
CLOUDFLARE_ACCOUNT_ID: "a209c523d2d9646cc56227dbe6ce3ede" | |
- name: Get preview deployment URL | |
id: preview-url | |
working-directory: "packages/experiments/" | |
run: | | |
echo "url=$(grep -o 'http[s]*://[^\\]*' url.txt)" >> $GITHUB_OUTPUT | |
comment-on-pr: | |
name: Add a comment with the deployment link on the PR | |
if: github.actor != 'dependabot[bot]' | |
needs: ["experiments-deploy-pages"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'Experiments preview build: ${{ needs.experiments-deploy-pages.outputs.previewUrl }}' | |
}) |