adding resource attributes to spans #147
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 Tracetest (RC version) | |
permissions: | |
contents: write | |
concurrency: | |
group: "release-candidate" | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
on: | |
push: | |
tags: | |
# this pipeline supports RC pre releases | |
- "v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+" | |
jobs: | |
build-web: | |
name: build web | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: cd web; npm ci | |
- run: cd web; CI= npm run build | |
- name: Upload assets | |
uses: actions/upload-artifact@v3 | |
with: | |
name: tracetest-web | |
path: web/build/ | |
release: | |
runs-on: ubuntu-latest | |
needs: [build-web] | |
env: | |
DOCKER_CLI_EXPERIMENTAL: "enabled" | |
GORELEASER_KEY: ${{ secrets.GORELEASER_LICENSE }} | |
GITHUB_TOKEN: ${{ secrets.CI_BOT_TOKEN }} | |
FURY_TOKEN: ${{ secrets.FURY_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: docker/setup-qemu-action@v2 | |
- uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
if: github.event_name != 'pull_request' | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Setup go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: "go.mod" | |
- uses: actions/download-artifact@v3 | |
with: | |
name: tracetest-web | |
path: web/build/ | |
# release | |
- uses: goreleaser/goreleaser-action@v4 | |
with: | |
distribution: goreleaser-pro | |
version: v2.0.1 | |
args: release --clean -f .goreleaser.rc.yaml | |
env: | |
VERSION: ${{ github.ref_name}} | |
TRACETEST_ENV: main | |
ANALYTICS_FE_KEY: ${{ secrets.ANALYTICS_FE_KEY }} | |
ANALYTICS_BE_KEY: ${{ secrets.ANALYTICS_BE_KEY }} | |
TRACETEST_DEFAULT_CLOUD_ENDPOINT: ${{ secrets.TRACETEST_DEFAULT_CLOUD_ENDPOINT }} | |
# release agent | |
- name: Build and push agent | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
tags: kubeshop/tracetest-agent:${{ env.VERSION }} | |
file: ./Dockerfile.agent | |
build-args: | | |
TRACETEST_VERSION=${{ env.VERSION }} | |
env: | |
VERSION: ${{ github.ref_name }} | |
- name: Trigger Infra Update | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.INFRA_REPO_PAT }} | |
repository: ${{ secrets.INFRA_REPO }} | |
event-type: update-tags | |
client-payload: '{"repo_name": "tracetest", "new_tag": "${{ github.ref_name }}"}' | |