build(deps-dev): bump typesync from 0.13.3 to 0.13.4 (#64) #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
with: | |
username: ${{ env.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
short-description: ${{ github.event.repository.description }} | |
- name: Sync Repository Metadata | |
# uses: kbrashears5/[email protected] | |
uses: iloveitaly/github-action-repo-sync@python | |
with: | |
TOKEN: ${{ secrets.GH_PERSONAL_TOKEN }} |