mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
ci: fix tag-build
This commit is contained in:
parent
f58a190b13
commit
1b3bd70b41
1 changed files with 3 additions and 2 deletions
5
.github/workflows/tag-build.yml
vendored
5
.github/workflows/tag-build.yml
vendored
|
|
@ -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
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue