Skip to content

chore(deps): update dependency @augu/eslint-config to v5.3.0 #1022

chore(deps): update dependency @augu/eslint-config to v5.3.0

chore(deps): update dependency @augu/eslint-config to v5.3.0 #1022

Workflow file for this run

# 🐳 docker-manifest-action: Simple and tiny GitHub action to link Docker manifests easily.
# Copyright (c) 2022-2024 Noelware, LLC. <team@noelware.org>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
name: Action Playground
on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- '.vscode/**'
- '.husky/**'
- '.eslintignore'
- '.gitignore'
- '**.md'
- 'LICENSE'
- 'renovate.json'
jobs:
playground:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Login into GitHub's container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- id: repo
run: echo "lowercase=${GITHUB_REPOSITORY,,}" >> $GITHUB_OUTPUT
- name: Build playground image
uses: docker/build-push-action@v6
with:
provenance: false
platforms: linux/amd64
context: .
file: ./playground/node.Dockerfile
push: true
tags: |
ghcr.io/${{ steps.repo.outputs.lowercase }}/playground:latest-amd64
- name: Build playground image (arm64)
uses: docker/build-push-action@v6
with:
provenance: false
platforms: linux/arm64
context: .
file: ./playground/node.Dockerfile
push: true
tags: |
ghcr.io/${{ steps.repo.outputs.lowercase }}/playground:latest-arm64
- name: Create merged manifest
uses: ./
with:
inputs: ${{ env.image }}
images: ${{ env.image }}-amd64,${{ env.image }}-arm64
push: true
env:
image: ghcr.io/${{ steps.repo.outputs.lowercase }}/playground:latest