From 93de2b871c31336689cb8b2fd1dcbdabbd0dfba7 Mon Sep 17 00:00:00 2001 From: Sebastian Rollen Date: Wed, 14 Jul 2021 12:09:41 -0400 Subject: [PATCH] update gh actions --- .github/pull_request_template.md | 1 - .github/workflows/release.yml | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) delete mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 9202ef5..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1 +0,0 @@ -- [ ] Version has been bumped diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24e502a..25c8933 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,12 +13,12 @@ jobs: uses: actions/checkout@v2 - name: Read version number id: read_toml - uses: outcome-co/action-read-toml@v2.0.10 + uses: SebRollen/toml-action@v1.0.0 with: - path: Cargo.toml - key: package.version + file: Cargo.toml + field: package.version - name: Set tag env variable - run: echo IMAGE_TAG=v${{steps.read_toml.outputs.package_version}} >> $GITHUB_ENV + run: echo IMAGE_TAG=v${{steps.read_toml.outputs.value}} >> $GITHUB_ENV - uses: ncipollo/release-action@v1 continue-on-error: true with: