mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-16 14:16:45 +00:00
26 lines
916 B
YAML
26 lines
916 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- my-temp-release-check
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Get base image name
|
|
shell: bash
|
|
run: echo "##[set-output name=cal_ver;]$(echo $(date +'%Y.%m.%d'))"
|
|
# echo "##[set-output name=build_time_utc;]$(echo $(date -u))"
|
|
# echo "##[set-output name=build_timestamp;]$(echo $(date +%s))"
|
|
id: version_parameters
|
|
- name: Build CLI
|
|
run: cd cli && make build-all CAL_VER=${{ steps.version_parameters.outputs.cal_ver }} # BUILD_TIME_UTC=${steps.version_parameters.outputs.build_time_utc} BUILD_TIMESTAMP=${steps.version_parameters.outputs.build_timestamp}
|
|
- uses: ncipollo/release-action@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
artifacts: "cli/bin/**/"
|
|
commit: my-temp-release-check
|
|
tag: v0.0.1 |