Skip to content

feat: Enabling Test Resource definition string #15

feat: Enabling Test Resource definition string

feat: Enabling Test Resource definition string #15

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Install xk6
run: go install go.k6.io/xk6/cmd/xk6@latest
- name: Build the binary
run: xk6 build --with github.com/kubeshop/xk6-tracetest=.
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: k6
asset_name: k6-tracetest
tag: ${{ github.ref }}
overwrite: true