Skip to content

chore(deps): update containerbase/internal-tools action to v3.5.1 (#15) #794

chore(deps): update containerbase/internal-tools action to v3.5.1 (#15)

chore(deps): update containerbase/internal-tools action to v3.5.1 (#15) #794

Workflow file for this run

name: build
on:
push:
env:
OWNER: ${{ github.repository_owner }}
FILE: proget
IMAGE: ghcr.io/${{ github.repository_owner }}/proget
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
linux:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
# TAG: linux
TAG: latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Init
run: ./bin/init.sh
shell: bash
- name: docker-config
uses: containerbase/internal-tools@6a3ee2b64874b17e9ce3e4a6c84257abd2ece9cc # v3.5.1
with:
command: docker-config
- name: Build the Docker image
run: docker buildx bake --progress plain 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