Skip to content

ci(deps): update containerbase/internal-tools action to v2.0.1 #41

ci(deps): update containerbase/internal-tools action to v2.0.1

ci(deps): update containerbase/internal-tools action to v2.0.1 #41

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
merge_group:
schedule:
- cron: '0 1 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref_name }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: enable corepack
run: corepack enable
- name: install deps
run: yarn install
- name: lint
run: yarn lint
build:
runs-on: ubuntu-latest
needs:
- lint
permissions:
contents: write
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: binary-builder
uses: containerbase/internal-tools@807c465b4f4bc65a76611be701c03f1bfc55e587 # v2.0.1
with:
command: binary-builder
dry-run: ${{github.ref_name != 'main'}}
token: ${{ secrets.GITHUB_TOKEN }}