From dfe20df20b2b1ebab0167cbf847a6a00612be60a Mon Sep 17 00:00:00 2001 From: Gavin Brennan Date: Thu, 1 Jun 2023 09:34:22 +0200 Subject: [PATCH] Excel fix --- .github/workflows/ExcelDeploy.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ExcelDeploy.yml b/.github/workflows/ExcelDeploy.yml index 9259ef5f..4459edeb 100644 --- a/.github/workflows/ExcelDeploy.yml +++ b/.github/workflows/ExcelDeploy.yml @@ -47,13 +47,16 @@ jobs: name: QwackExcel.Next path: ./QwackExcel.zip - - name: Create Tag - uses: rickstaa/action-create-tag@v1 - id: "tag_create" + - name: Create tag + uses: actions/github-script@v5 with: - tag: "latest" - tag_exists_error: false - message: "Latest release" + script: | + github.rest.git.createRef({ + owner: context.repo.owner, + repo: context.repo.repo, + ref: 'refs/tags/latest', + sha: context.sha + }) - name: Release uses: ncipollo/release-action@v1