Release v0.2.6 #9
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: Publish artifacts | |
on: | |
# Will only run when release is published. | |
release: | |
types: | |
- created | |
workflow_dispatch: | |
jobs: | |
publish-artifacts: | |
runs-on: ubuntu-20.04 | |
steps: | |
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_READ_USER }} | |
password: ${{ secrets.DOCKERHUB_READ_TOKEN }} | |
- name: publish docker image | |
uses: hypertrace/github-actions/gradle@main | |
with: | |
args: dockerPushImages | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_PUBLISH_USER }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_PUBLISH_TOKEN }} | |
publish-helm-charts: | |
needs: publish-artifacts | |
runs-on: ubuntu-20.04 | |
steps: | |
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: package and release charts | |
uses: hypertrace/github-actions/helm-gcs-publish@main | |
with: | |
helm-gcs-credentials: ${{ secrets.HELM_GCS_CREDENTIALS }} | |
helm-gcs-repository: ${{ secrets.HELM_GCS_REPOSITORY }} | |
publish-release-notes: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: hypertrace/github-actions/release-notes@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |