Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
crohr committed May 30, 2024
1 parent ede4b04 commit 8e417ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
name: blank-sinatra-app
version: '1.0.0'
path: app
debug: true
- name: Upload
uses: actions/upload-artifact@v4
with:
Expand Down
6 changes: 5 additions & 1 deletion package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ inputs:
description: 'Environment variables to pass to pkgr'
required: false
default: ''
debug:
description: 'Debug mode'
required: false
default: 'false'

outputs:
workspace:
Expand Down Expand Up @@ -87,7 +91,7 @@ runs:
-v $workspace/output:/pkgr/output \
--net=host \
ghcr.io/crohr/pkgr/${{ inputs.target }}-${{ inputs.pkgr_version }} \
--name "${{ inputs.name }}" --version "${{ inputs.version }}" --iteration "${{ steps.setup.outputs.iteration }}" --env "${{ inputs.env }}"
--name "${{ inputs.name }}" --version "${{ inputs.version }}" --iteration "${{ steps.setup.outputs.iteration }}" --env "${{ inputs.env }}" --debug=${{ inputs.debug }}
package_path=""
if [ -f $workspace/output/*.deb ]; then
Expand Down

0 comments on commit 8e417ff

Please sign in to comment.