Skip to content

build(deps): bump node from 22.7.0 to 22.9.0 (#56) #51

build(deps): bump node from 22.7.0 to 22.9.0 (#56)

build(deps): bump node from 22.7.0 to 22.9.0 (#56) #51

Workflow file for this run

name: docker
on:
push:
branches:
- main
permissions: read-all
jobs:
docker:
runs-on: ubuntu-latest
env:
DOCKER_USERNAME: iloveitaly
steps:
- uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ github.event.repository.name }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ env.DOCKER_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
# amd64 supports x86_64
platforms: linux/arm64,linux/amd64
tags: ${{ github.event.repository.full_name }}:latest
labels: ${{ steps.meta.outputs.labels }}
- name: Update repo description
uses: peter-evans/dockerhub-description@v4.0.0
with:
username: ${{ env.DOCKER_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
short-description: ${{ github.event.repository.description }}
- name: Sync Repository Metadata
# uses: kbrashears5/github-action-repo-sync@v1.0.0
uses: iloveitaly/github-action-repo-sync@python
with:
TOKEN: ${{ secrets.GH_PERSONAL_TOKEN }}