Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion deken/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ inputs:
deken_password:
description: 'Password from puredata.info credentials'
required: true
upload:
description: 'Whether to upload to deken (true/false)'
required: true
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -52,7 +55,7 @@ runs:
echo '```' | tee -a $GITHUB_STEP_SUMMARY

- name: Upload to deken
if: ${{ github.ref_name == 'production' || startsWith(github.ref_name, 'deken-') }}
if: ${{ inputs.upload == 'true' }}
shell: bash
run: |
docker run --rm -e DEKEN_USERNAME="${{ inputs.deken_username }}" -e DEKEN_PASSWORD="${{ inputs.deken_password }}" \
Expand Down