added initial code to use authentication config for nessus (#267) #4
Workflow file for this run
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: Tag image on quay.io | |
env: | |
IMAGE_NAME: "rapidast" | |
IMAGE_REGISTRY: quay.io/redhatproductsecurity | |
IMAGE_REGISTRY_USER: ${{ secrets.IMAGE_REGISTRY_USER }} | |
IMAGE_REGISTRY_PASSWORD: ${{ secrets.IMAGE_REGISTRY_PASSWORD }} | |
on: | |
push: | |
tags: ["*"] | |
jobs: | |
tag-image: | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/redhat-actions/podman-login | |
- name: Log in to quay.io | |
uses: redhat-actions/podman-login@v1 | |
with: | |
registry: ${{ env.IMAGE_REGISTRY }} | |
username: ${{ env.IMAGE_REGISTRY_USER }} | |
password: ${{ env.IMAGE_REGISTRY_PASSWORD }} | |
- name: Tag image | |
run: | | |
# tag existing image on quay.io that has :<commit> tag with :<new> gh tag | |
SRC=${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} | |
DST=${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }} | |
skopeo copy docker://${SRC} docker://${DST} |