0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/.github/workflows/docker-publish.yml

56 lines
1.6 KiB
YAML
Raw Normal View History

2020-12-29 16:30:47 -05:00
name: Docker publish to docker.io
on:
push:
paths:
2020-12-29 16:30:47 -05:00
- .github/workflows/docker-publish.yml
- .github/workflows/docker-publish.yml
- 'packages/**'
- 'docker-bin/**'
- 'package.json'
2020-08-22 15:25:08 -05:00
- 'pnpm-*.yaml'
2020-12-30 16:31:13 -05:00
- 'Dockerfile'
- '.dockerignore'
2020-12-29 16:30:47 -05:00
branches:
2021-04-10 04:55:38 -05:00
- 'master'
2020-12-29 16:30:47 -05:00
tags:
- 'v*'
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
2020-12-29 16:30:47 -05:00
docker:
2020-09-01 14:22:36 -05:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v3
- uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # tag=v1
2020-12-29 16:30:47 -05:00
- uses: docker/setup-buildx-action@v1
with:
driver-opts: network=host
- uses: docker/login-action@v1
name: Login Docker Hub
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Prepare docker image tags
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v1
with:
images: ${{ github.repository }}
2021-04-10 04:55:38 -05:00
tag-custom: nightly-master
tag-custom-only: ${{ github.ref == 'refs/heads/master' }}
2020-12-29 16:30:47 -05:00
tag-semver: |
{{version}}
{{major}}
{{major}}.{{minor}}
- name: Build & Push
uses: docker/build-push-action@v4
2020-09-01 14:22:36 -05:00
with:
2020-12-29 16:30:47 -05:00
context: .
file: ./Dockerfile
2023-02-19 17:22:37 -05:00
platforms: linux/amd64,linux/arm64
2020-12-29 16:30:47 -05:00
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}