From eac8e15f7db99eda1cafa70715f00db0a38b6809 Mon Sep 17 00:00:00 2001 From: dtrai2 Date: Thu, 19 Dec 2024 14:48:06 +0100 Subject: [PATCH] debug output --- .../workflows/weekly-build-of-last-release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/weekly-build-of-last-release.yml b/.github/workflows/weekly-build-of-last-release.yml index bc82239e9..4b2968dcf 100644 --- a/.github/workflows/weekly-build-of-last-release.yml +++ b/.github/workflows/weekly-build-of-last-release.yml @@ -17,15 +17,15 @@ jobs: - name: Get latest tag id: get-tag run: | - echo "tag=$(curl -s -H 'Authorization: token ${{ secrets.GITHUB_TOKEN }}' 'https://api.github.com/repos/fkie-cad/Logprep/tags' | jq '.[0].name' | tr -d 'v')" + echo "tag=$(curl -s -H 'Authorization: token ${{ secrets.GITHUB_TOKEN }}' 'https://api.github.com/repos/fkie-cad/Logprep/tags' | jq '.[0].name' | tr -d 'v')" >> "GITHUB_OUTPUT" - name: debug tag run: echo ${{ steps.get-tag.outputs.tag }} -# containerbuild: -# uses: ./.github/workflows/container-build.yml -# needs: get-lastest-release -# secrets: inherit -# with: -# build-version: ${{ needs.get-latest-release.outputs.tag }} -# tags: "${{ needs.get-latest-release.outputs.tag }}-weekly" + containerbuild: + uses: ./.github/workflows/container-build.yml + needs: get-lastest-release + secrets: inherit + with: + build-version: ${{ needs.get-latest-release.outputs.tag }} + tags: "${{ needs.get-latest-release.outputs.tag }}-weekly"