chore(deps): lock file maintenance #3268
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: build | |
on: | |
push: | |
env: | |
OWNER: ${{ github.repository_owner }} | |
FILE: builder | |
IMAGE: ghcr.io/${{ github.repository_owner }}/builder | |
NODE_VERSION: 18.18.2 # renovate: datasource=node depName=node | |
DRY_RUN: ${{ github.ref != 'refs/heads/main' }} | |
BUILDKIT_PROGRESS: plain | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: yarn | |
- name: enable corepack | |
run: corepack enable | |
- name: Installing dependencies | |
run: yarn install | |
- name: Lint | |
run: yarn lint | |
windows: | |
runs-on: ${{ format('windows-{0}', matrix.os) }} | |
needs: [lint] | |
timeout-minutes: 60 | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
os: [2019, 2022] | |
env: | |
BASE: ${{ matrix.os }} | |
TAG: windows-${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
# ignore not yet existing images | |
- name: Fetch the Docker image | |
run: | | |
docker pull ${{ env.IMAGE }} | |
docker pull ${{ env.IMAGE }}:${{ env.TAG }} | |
continue-on-error: true | |
- name: Build the Docker image | |
run: docker build -t ${{ env.IMAGE }}:${{ env.TAG }} --cache-from ${{ env.IMAGE }} --cache-from ${{ env.IMAGE }}:${{ env.TAG }} -f Dockerfile . | |
working-directory: ./windows | |
- name: Test run | |
run: docker-compose --file docker-compose.test.yml run sut | |
working-directory: ./windows | |
env: | |
IMAGE: ${{ env.IMAGE }}:${{ env.TAG }} | |
- name: Log into registry | |
if: github.ref == 'refs/heads/main' | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin | |
- name: Publish the Docker image | |
if: github.ref == 'refs/heads/main' | |
run: docker push ${{ env.IMAGE }} | |
env: | |
IMAGE: ${{ env.IMAGE }}:${{ env.TAG }} | |
shell: bash | |
working-directory: ./windows | |
linux: | |
runs-on: ubuntu-latest | |
needs: [lint] | |
timeout-minutes: 30 | |
permissions: | |
contents: read | |
packages: write | |
env: | |
TAG: linux | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: docker-config | |
uses: containerbase/internal-tools@18e4711c931fa3fe5ac671cd7ab98577ee318d2d # v2.0.2 | |
with: | |
command: docker-config | |
- name: Build the Docker image | |
run: docker buildx bake test | |
- name: Test run | |
run: docker-compose --file docker-compose.test.yml run sut | |
working-directory: ./linux | |
env: | |
IMAGE: ${{ env.IMAGE }}:${{ env.TAG }} | |
- name: Log into registry | |
if: github.ref == 'refs/heads/main' | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin | |
- name: Publish the Docker image | |
if: github.ref == 'refs/heads/main' | |
run: docker buildx bake build --provenance=false | |
multi-arch: | |
needs: [linux, windows] | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: yarn | |
- name: enable corepack | |
run: corepack enable | |
- name: Installing dependencies | |
run: yarn install | |
- name: Log into registry | |
if: github.ref == 'refs/heads/main' | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin | |
- name: Build the Docker multiarch manifest | |
run: yarn build --release latest | |
- name: Publish the Docker multiarch manifest | |
if: github.ref == 'refs/heads/main' | |
run: yarn push --release latest | |
release: | |
needs: [multi-arch] | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: yarn | |
- name: enable corepack | |
run: corepack enable | |
- name: Installing dependencies | |
run: yarn install | |
- name: Log into registry | |
if: github.ref == 'refs/heads/main' | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin | |
- name: semantic-release | |
run: yarn semantic-release --dry-run ${{env.DRY_RUN}} --ci ${{env.DRY_RUN != 'true'}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |