summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAAGaming <aa@mail.catvibers.me>2022-07-15 10:38:03 -0400
committerAAGaming <aa@mail.catvibers.me>2022-07-15 10:38:03 -0400
commite600aeccc7ad74edbb8d6a60f5b3942736a9412d (patch)
tree3b68121e13b27e86c249dd23e510416d90f3417a /.github/workflows
parent162d1b561b37fa26aab0c37800ffee3dca878b5a (diff)
downloaddecky-loader-e600aeccc7ad74edbb8d6a60f5b3942736a9412d.tar.gz
decky-loader-e600aeccc7ad74edbb8d6a60f5b3942736a9412d.zip
fix ci startup failure
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 28a3377f..45bb164c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -116,7 +116,7 @@ jobs:
- name: Prepare tag ⚙️
id: ready_tag
run: |
- echo ::set-output name=${${{ jobs.old_tag.outputs.tag }}#"-pre"}
+ echo ::set-output name=${${{ steps.old_tag.outputs.tag }}#"-pre"}
- name: Bump version ⏫
id: tag_version
@@ -125,7 +125,7 @@ jobs:
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
- INITIAL_VERSION: ${{ jobs.ready_tag.outputs.name }}
+ INITIAL_VERSION: ${{ steps.ready_tag.outputs.name }}
- name: Push tag 📤
uses: rickstaa/action-create-tag@v1.3.2