diff --git a/.github/workflows/autopublish.yaml b/.github/workflows/autopublish.yaml index 604c8b4..85ee7c2 100644 --- a/.github/workflows/autopublish.yaml +++ b/.github/workflows/autopublish.yaml @@ -10,8 +10,6 @@ jobs: uses: ./.github/workflows/artifacts.yaml get-version-tags: runs-on: ubuntu-22.04 - outputs: - tags: ${{ steps.tags.outputs.tags }} steps: - name: Checkout repository uses: actions/checkout@v2 @@ -22,8 +20,9 @@ jobs: git fetch --tags json_tags=echo git tag | jq -R -s -c 'split("\n")[:-1]' echo $json_tags - echo 'tags=${json_tags}' >> "$GITHUB_OUTPUT" - echo $GITHUB_OUTPUT + echo 'tags=$json_tags' >> $GITHUB_OUTPUT + outputs: + tags: ${{ steps.tags.outputs.tags }} build: name: Build and Validate runs-on: ubuntu-22.04