This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
chore(deps): update dependency @clerk/clerk-js to v4.73.5 (#529) #524
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: Release Bata on commit to main | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
CI: true | |
on: | |
push: | |
branches: [main] | |
jobs: | |
pullrequest-job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- uses: jorelali/setup-elm@v6 | |
with: | |
elm-version: 0.19.1 | |
- name: Use Node.js | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
- name: npm install | |
if: steps.cache-node_modules.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: build elm frontend | |
run: npm run build-fe-dev | |
- name: deploy backend | |
env: | |
AMPT_API_KEY: ${{ secrets.AMPT_API_KEY }} | |
id: deploy-backend | |
run: | | |
url=$(./scripts/deployAndGetUrl.sh beta) | |
echo aha $url | |
echo "BACKEND_URL=$url" >> "$GITHUB_OUTPUT" |