From bdf1944de4f2a370200cd1eac01c0154e7134a80 Mon Sep 17 00:00:00 2001 From: Joel Wachsler Date: Sun, 10 Jul 2022 20:33:20 +0000 Subject: [PATCH] Maybe this works --- .github/workflows/tag.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 93ce281..dc32dc2 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -7,15 +7,9 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - - - name: Determine version - id: determine-version - run: | - VERSION=$(cat Cargo.toml | grep version | head -1 | sed 's/version = //' | sed 's/"//g') - Write-Output "::set-output name=VERSION::$VERSION" - uses: Klemensas/action-autotag@stable with: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - version: "${{ steps.determine-version.outputs.VERSION }}" + version: "$(cat Cargo.toml | grep version | head -1 | sed 's/version = //' | sed 's/"//g')" tag_prefix: "v" \ No newline at end of file