From a2b774ae1fec98cc1048545b513a459880556415 Mon Sep 17 00:00:00 2001 From: Roee Gadot Date: Thu, 10 Jun 2021 21:21:11 +0300 Subject: [PATCH] no message --- .github/workflows/release.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dab02feed..2eed9beaf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,13 +12,12 @@ jobs: - 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))" + 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) + 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 }}