Update releases.yml - apt update & install buildah

This commit is contained in:
Rahul Jain 2024-09-24 14:22:18 +00:00 committed by GitHub
parent 0cc8e2968f
commit 4e4756d1c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,6 +18,11 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Apt update
run: sudo apt-get update
- name: apt install buildah qemu-user-static
run: sudo apt-get install -y buildah qemu-user-static
- name: Set node version - name: Set node version
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:
@ -61,7 +66,7 @@ jobs:
tags: ${{ steps.image-metadata.outputs.tags }} tags: ${{ steps.image-metadata.outputs.tags }}
labels: ${{ steps.image-metadata.outputs.labels }} labels: ${{ steps.image-metadata.outputs.labels }}
containerfiles: ./Dockerfile containerfiles: ./Dockerfile
platforms: linux/amd64,linux/arm64 platforms: linux/amd64, linux/arm64
oci: true oci: true
# Webpack seems to use a lot of open files, increase the max open file limit to accomodate. # Webpack seems to use a lot of open files, increase the max open file limit to accomodate.
extra-args: | extra-args: |