diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 69232996..1e0edbcb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -110,15 +110,15 @@ jobs: echo "##[set-output name=tag;]$tag" id: tag - name: Generate release artifacts - run: make manifests changelog TAG=${{ github.tag.inputs.tag }} + run: make manifests changelog TAG=${{ github.tag.outputs.tag }} - name: Draft release uses: softprops/action-gh-release@v1 with: - tag_name: ${{ github.tag.inputs.tag }} + tag_name: ${{ github.tag.outputs.tag }} draft: true prerelease: true body_path: changelog files: | config/*.yaml env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}