From 486f0b184a318a46a7ea38304098e0102d50b6a8 Mon Sep 17 00:00:00 2001 From: Brandur Date: Fri, 2 Jun 2023 13:01:29 -0700 Subject: [PATCH] Try to fix use of release action --- .github/workflows/ci.yml | 44 +++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5295886..726a5a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,6 @@ on: - cron: "0 0 * * 0" jobs: - # # BUILD JOBS # @@ -23,7 +22,7 @@ jobs: timeout-minutes: 5 steps: - - name: 'Checkout' + - name: "Checkout" uses: actions/checkout@v2 - name: "Cache: Cargo registry" @@ -105,25 +104,24 @@ jobs: runs-on: ubuntu-latest steps: - - name: "Create release" - id: create_release - uses: actions/create-release@v1.0.0 - env: - GITHUB_TOKEN: ${{ secrets.GitHubToken }} - with: - body: Edit this. - draft: true - release_name: "${{ github.ref }}: Edit this" - tag_name: ${{ github.ref }} - - - name: "Save release URL to file" - run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt - - - name: "Upload release URL file" - uses: actions/upload-artifact@v1 - with: - name: release_url - path: release_url.txt + - name: "Create release" + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + draft: true + release_name: "Release ${{ github.ref }}" + tag_name: ${{ github.ref }} + + - name: "Save release URL to file" + run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt + + - name: "Upload release URL file" + uses: actions/upload-artifact@v1 + with: + name: release_url + path: release_url.txt release_linux: if: contains(github.ref, 'tags/v') @@ -140,7 +138,7 @@ jobs: timeout-minutes: 5 steps: - - name: 'Checkout' + - name: "Checkout" uses: actions/checkout@v2 - name: "Cache: Cargo registry" @@ -236,7 +234,7 @@ jobs: timeout-minutes: 5 steps: - - name: 'Checkout' + - name: "Checkout" uses: actions/checkout@v2 - name: "Cache: Cargo registry"