Skip to content

Release v1.0.0

Release v1.0.0 #113

Workflow file for this run

name: Publish artifacts
on:
# Will only run when release is published.
release:
types:
- created
workflow_dispatch:
jobs:
publish-artifacts:
runs-on: ubuntu-22.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: publish dockerPushImages
env:
DOCKER_USERNAME: ${{ secrets.DOCKERHUB_PUBLISH_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_PUBLISH_TOKEN }}
ORG_GRADLE_PROJECT_artifactory_contextUrl: ${{ secrets.ARTIFACTORY_CONTEXT_URL }}
ORG_GRADLE_PROJECT_artifactory_user: ${{ secrets.ARTIFACTORY_PUBLISH_USER }}
ORG_GRADLE_PROJECT_artifactory_password: ${{ secrets.ARTIFACTORY_PUBLISH_TOKEN }}
publish-helm-charts:
runs-on: ubuntu-22.04
needs: publish-artifacts
container:
image: hypertrace/helm-gcs-packager:0.3.1
credentials:
username: ${{ secrets.DOCKERHUB_READ_USER }}
password: ${{ secrets.DOCKERHUB_READ_TOKEN }}
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
env:
HELM_GCS_CREDENTIALS: ${{ secrets.HELM_GCS_CREDENTIALS }}
HELM_GCS_REPOSITORY: ${{ secrets.HELM_GCS_REPOSITORY }}
run: |
./.github/workflows/helm.sh package
./.github/workflows/helm.sh publish
publish-release-notes:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: hypertrace/github-actions/release-notes@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}