first commit

This commit is contained in:
2023-08-18 20:10:28 -07:00
commit 8d4c98a481
3 changed files with 159 additions and 0 deletions

25
readme.md Normal file
View File

@@ -0,0 +1,25 @@
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
image: owner/package
old-tag: latest
new-tags: |
tag1
tag2
tag3
```