diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index df15ff5..ed27a38 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -13,19 +13,15 @@ jobs: runs-on: ubuntu-latest outputs: upload_url: ${{ steps.create_release.outputs.upload_url }} - tag: ${{ steps.tag.outputs.tag }} steps: - - name: 'Generate Tag' - run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/} - id: tag - name: 'Create Release' id: create_release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ steps.tag.outputs.tag }} - release_name: Release ${{ steps.tag.outputs.tag }} + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} build-linux: runs-on: ubuntu-latest needs: release