Skip to content

Bump peter-evans/create-pull-request from 6.1.0 to 7.0.1 #239

Bump peter-evans/create-pull-request from 6.1.0 to 7.0.1

Bump peter-evans/create-pull-request from 6.1.0 to 7.0.1 #239

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- 'README.md'
branches:
- '**'
jobs:
buildx:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get Version
id: get_version
uses: battila7/[email protected]
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/[email protected]
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Build only
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
#Problems with x32 bit systems -> memory allocation issues when building node. Perhaps include later when a fix is available
#linux/arm/v6,linux/s390x,linux/arm/v7
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache