Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool authored Dec 7, 2024
1 parent e199e55 commit a5aca94
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,6 @@ outputs:
runs:
using: composite
steps:
- name: is combine true
if: ${{ inputs.combine }} == 'true'
run: echo hi

- name: is combine false
if: ${{ inputs.combine }} == 'false'
run: echo hello

- name: leave
shell: bash
run: exit 1

- name: Detect platform
id: platform
shell: bash
Expand Down Expand Up @@ -287,7 +275,7 @@ runs:
echo "output=$OUTPUT_DIR" >> $GITHUB_OUTPUT
- name: Upload artifacts
if: ${{ inputs.combine }} == 'true'
if: ${{ inputs.combine == 'true' }}
uses: actions/upload-artifact@v4
with:
name: "geode-build-${{ steps.platform.outputs.target_id }}"
Expand Down

0 comments on commit a5aca94

Please sign in to comment.