Release Artifacts #2
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: Release Docker images | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
kaniko: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build proxy | |
uses: aevea/[email protected] | |
with: | |
registry: harbor.clyso.com | |
username: "${{ secrets.DOCKER_USER }}" | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
image: chorus/proxy | |
build_file: Dockerfile.proxy | |
tag: ${{ github.ref_name }} | |
strip_tag_prefix: v | |
tag_with_latest: true | |
extra_args: "--build-arg GIT_TAG=${{ github.ref_name }} --build-arg GIT_COMMIT=${{ github.sha }}" | |
- name: build worker | |
uses: aevea/[email protected] | |
with: | |
registry: harbor.clyso.com | |
username: "${{ secrets.DOCKER_USER }}" | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
image: chorus/worker | |
build_file: Dockerfile.worker | |
tag: ${{ github.ref_name }} | |
strip_tag_prefix: v | |
tag_with_latest: true | |
extra_args: "--build-arg GIT_TAG=${{ github.ref_name }} --build-arg GIT_COMMIT=${{ github.sha }}" |