From 1b3bd70b414bf90444023fd0cc62c1a34674e3ef Mon Sep 17 00:00:00 2001 From: goaaats <16760685+goaaats@users.noreply.github.com> Date: Sun, 31 Oct 2021 19:53:06 +0100 Subject: [PATCH] ci: fix tag-build --- .github/workflows/tag-build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tag-build.yml b/.github/workflows/tag-build.yml index 4875e9154..8476ccada 100644 --- a/.github/workflows/tag-build.yml +++ b/.github/workflows/tag-build.yml @@ -5,6 +5,7 @@ concurrency: build_dalamud jobs: tag: name: Tag Build + runs-on: ubuntu-latest steps: - name: Determine Tag id: s1 @@ -17,7 +18,7 @@ jobs: exit -1; else export D_TAG_VERSION=$version; - echo "::set-env name=D_TAG_VERSION::$D_TAG_VERSION"; + echo "::set-output name=D_TAG_VERSION::$D_TAG_VERSION"; exit 0; fi - name: Create Tag @@ -29,6 +30,6 @@ jobs: github.git.createRef({ owner: context.repo.owner, repo: context.repo.repo, - ref: "refs/tags/${{D_TAG_VERSION}}", + ref: "refs/tags/${{steps.s1.outputs.D_TAG_VERSION}}", sha: context.sha })