tag-manifest/readme.md
2023-08-18 21:26:42 -07:00

28 lines
592 B
Markdown

Action for re-tagging an existing docker multi-arch manifest
## Inputs
<!-- -->
## Example usage
```yaml
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Tag the "gitea.example.com/owner/package:latest" image with some new tags
uses: https://gitea.jbrumond.me/actions/docker-tag@v0.1
with:
registry: https://gitea.example.com
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
image: owner/package
old-tag: latest
new-tags: |
tag1
tag2
tag3
```