From a9842f0f6202e2fde0da9040526753bc3b3bc561 Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Mon, 9 Jan 2023 02:08:24 +0000 Subject: [PATCH 1/3] fix: updated readme to reflect updated version Relates-to: #85 --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8b575cb..406ed14 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Upload files to a GitHub release [![GitHub Actions Workflow](https://github.com/svenstaro/upload-release-action/workflows/PR%20Checks/badge.svg)](https://github.com/svenstaro/upload-release-action/actions) +# Upload files to a GitHub release [![GitHub Actions Workflow](https://github.com/svenstaro/upload-release-action/actions/workflows/ci.yml/badge.svg)](https://github.com/svenstaro/upload-release-action/actions) This action allows you to select which files to upload to the just-tagged release. It runs on all operating systems types offered by GitHub. @@ -89,7 +89,7 @@ jobs: asset_name: mything-macos-amd64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build run: cargo build --release --locked - name: Upload binaries to release @@ -115,7 +115,7 @@ jobs: name: Publish binaries runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build run: cargo build --release - name: Upload binaries to release @@ -144,7 +144,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build run: cargo build --release - name: Upload binaries to release @@ -182,7 +182,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # This step reads a file from repo and use it for body of the release # This works on any self-hosted runner OS From f63a22975a256bafacdbef66194493960c8ed8b9 Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Mon, 9 Jan 2023 02:13:15 +0000 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 406ed14..acc1c11 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,7 @@ jobs: r="${r//'%'/'%25'}" # Multiline escape sequences for % r="${r//$'\n'/'%0A'}" # Multiline escape sequences for '\n' r="${r//$'\r'/'%0D'}" # Multiline escape sequences for '\r' - echo "::set-output name=RELEASE_BODY::$r" # <--- Set environment variable + echo "RELEASE_BODY=$r" >> $GITHUB_OUTPUT # <--- Set environment variable - name: Upload Binaries to Release uses: svenstaro/upload-release-action@v2 From 4d1e10f6d1005d81fc9ce8c2a02c5750390ae620 Mon Sep 17 00:00:00 2001 From: Aaron Shaw Date: Mon, 9 Jan 2023 02:24:13 +0000 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index acc1c11..7cdb56b 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build run: cargo build --release - name: Upload binaries to release