Skip to content

fix: Updated alpine base image to 3.22 #109

fix: Updated alpine base image to 3.22

fix: Updated alpine base image to 3.22 #109

Workflow file for this run

name: Test
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout with token
if: github.event_name != 'pull_request'
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout without token
if: github.event_name == 'pull_request'
uses: actions/checkout@v4
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker Build Test
run: docker buildx build --load --tag test:test --file ./Dockerfile ./
- name: Version
if: github.event_name != 'pull_request'
uses: cycjimmy/semantic-release-action@v4
# with:
# semantic_version: 17.4
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}