From 55c0371f46c260ef7f3c455f3ce75186592da050 Mon Sep 17 00:00:00 2001 From: Sebastian Rollen Date: Tue, 24 Aug 2021 15:22:52 -0400 Subject: [PATCH] update action --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e859c83..1488541 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: