Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-30 12:36:08 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-30 12:36:08 +0300
commit24d2b011c88f81c16c71875e80fa1ff247f2e66c (patch)
treed07f66f728524be1d277f044f52e1037271e46f6
parent07593357787e8b2a93a1544db441f58ff513c854 (diff)
Pipeline
-rw-r--r--.github/workflows/release.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 7adbf15..1e0bcf4 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -12,9 +12,9 @@ jobs:
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- tag: ${{ github.head_ref || github.ref_name }}
- commit: master
- name: Release ${{ github.head_ref || github.ref_name }}
+ tag: $(git rev-parse --short "$GITHUB_SHA")
+ commit: ${{ github.head_ref || github.ref_name }}
+ name: Release $(git rev-parse --short "$GITHUB_SHA")
draft: true
- name: Output Release URL File
run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
@@ -72,7 +72,7 @@ jobs:
- name: Get Release File Name & Upload URL
id: get_release_info
env:
- TAG_REF_NAME: ${{ github.head_ref || github.ref_name }}
+ TAG_REF_NAME: $(git rev-parse --short "$GITHUB_SHA")
REPOSITORY_NAME: ${{ github.repository }}
run: |
value=`cat release_url/release_url.txt`