mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
29 lines
614 B
YAML
29 lines
614 B
YAML
name: Docker publish to docker.io
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- .github/workflows/docker-publish.yml
|
|
- 'src/**'
|
|
- 'conf/**'
|
|
- 'types/**'
|
|
- 'docker-bin/**'
|
|
- 'bin/**'
|
|
- 'package.json'
|
|
- 'yarn.lock'
|
|
- '.yarn/**'
|
|
- '.yarnrc.yaml'
|
|
- '.pnp.js'
|
|
branches:
|
|
- '**'
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
docker-publish:
|
|
secrets: inherit
|
|
uses: verdaccio/verdaccio/.github/workflows/shared-docker-publish.yml@master
|
|
with:
|
|
tag-latest: true
|
|
tag-custom: 6.x-next
|
|
tag-custom-only: ${{ github.ref == 'refs/heads/6.x' }}
|