This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
chore(deps): update caddy:2.8.4-alpine docker digest to a5e86b1 #872
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: ci | |
on: | |
push: | |
branches: | |
- '**' | |
tags: ['v*.*.*'] | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'yarn' | |
- name: Install dependencies 📦 | |
run: yarn install --immutable | |
- name: Run build | |
run: yarn run build | |
docker: | |
uses: reims2/actions/.github/workflows/docker.yml@main | |
concurrency: docker-${{ github.ref }} | |
if: ${{ github.event_name != 'merge_group' }} | |
secrets: inherit # pass all secrets | |
deploy: | |
needs: | |
- docker | |
if: github.ref == 'refs/heads/main' | |
uses: reims2/actions/.github/workflows/deploy.yml@main | |
concurrency: deploy-${{ github.repository }} | |
secrets: inherit # pass all secrets | |
dev-deploy: | |
needs: | |
- docker | |
if: github.event_name == 'workflow_dispatch' | |
uses: reims2/actions/.github/workflows/dev-deploy.yml@main | |
concurrency: dev-deploy-${{ github.repository }} | |
secrets: inherit # pass all secrets |