On Push #580
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: On Push | |
on: | |
schedule: | |
# Schedule for every day at 12:00 CEST | |
- cron: "0 10 * * *" | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
formatting: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
- name: Use Node LTS β¨ | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
- name: Install dependencies π¦οΈ | |
run: pnpm install --frozen-lockfile | |
- name: Lint π¨ | |
run: pnpm lint | |
update-next: | |
name: Update next | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v4 | |
with: | |
ref: next | |
- name: Reset promotion branch | |
run: | | |
git fetch origin main:main | |
git reset --hard main | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: promote/main-to-next | |
title: "Promote changes in main β next" | |
body: | | |
This PR promotes changes from the main branch to the next branch. | |
It is created automatically by the GitHub Actions workflow. | |
**PS!** This should not be squashed or rebased, as it will be used to merge changes back to main. | |
build: | |
name: Build and Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
- name: Use Node LTS β¨ | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
- name: Install dependencies π¦οΈ | |
run: pnpm install --frozen-lockfile | |
- name: Build π¨ | |
run: pnpm build | |
- name: Upload website | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
firebaseServiceAccount: | |
"${{ secrets.FIREBASE_SERVICE_ACCOUNT_BJERK_IO }}" | |
channelId: live | |
target: prod | |
projectId: bjerk-io |