Skip to content

Commit

Permalink
debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrai2 committed Dec 19, 2024
1 parent 4be8aca commit eac8e15
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/weekly-build-of-last-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit eac8e15

Please sign in to comment.