Skip to content

chore(deps): update alpine docker tag to v3.20.3 #8

chore(deps): update alpine docker tag to v3.20.3

chore(deps): update alpine docker tag to v3.20.3 #8

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "cryfs container - Build & release"
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
push:
branches: ["main"]
paths: ["cryfs/**"]
pull_request:
branches: ["main"]
paths: ["cryfs/**"]
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
build-docker-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64,amd64,arm
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
install: true
- if: ${{ github.event_name != 'pull_request' }}
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build CryFS image
working-directory: ./cryfs
run: docker build . --file Dockerfile --tag antaresinc/cryfs$SOURCE_COMMIT