mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 19:37:51 +03:00
Actions: Workflow inputs are strings
This commit is contained in:
parent
0f9b61fb8f
commit
06f73470f2
1 changed files with 3 additions and 3 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -9,7 +9,7 @@ on:
|
|||
test:
|
||||
description: 'Testing the release workflow'
|
||||
required: true
|
||||
default: true
|
||||
default: 'true'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -113,7 +113,7 @@ jobs:
|
|||
|
||||
- name: Echo the version
|
||||
run: echo ${{ steps.get_version.outputs.VERSION }}
|
||||
if: github.event.inputs.test == true
|
||||
if: github.event.inputs.test == 'true'
|
||||
|
||||
# - name: Upload archive to release
|
||||
# uses: svenstaro/upload-release-action@v1-release
|
||||
|
@ -205,7 +205,7 @@ jobs:
|
|||
|
||||
- name: Inspect the result
|
||||
run: ls target/${{ matrix.target }}/debian/*.deb
|
||||
if: github.event.inputs.test == true
|
||||
if: github.event.inputs.test == 'true'
|
||||
|
||||
# - name: Upload Debian package to release
|
||||
# uses: svenstaro/upload-release-action@v1-release
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue