File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,17 @@ jobs:
54
54
verbose : true
55
55
56
56
# Produce an Alire release manifest
57
- - name : Configure Github credentials
57
+ - name : Configure Github credentials and generate manifest
58
+ shell : bash
58
59
run : |
59
60
# Set user GitHub login required for `alr publish`
60
61
alr settings --set --global user.github_login ${{github.repository_owner}}
61
62
62
63
# Run Alire publish assistant with the appropriate commit
63
- alr publish ${{github.server_url}}/${{github.repository}} ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
64
+ # Force to allow generation for -dev version
65
+ alr -f publish --skip-submit \
66
+ ${{github.server_url}}/${{github.repository}} \
67
+ ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
64
68
65
69
# Save the path to the release manifest for the next step.
66
70
# This is a little trick to get around the fact that the actions/upload-release-asset doesn't allow globing pattern.
You can’t perform that action at this time.
0 commit comments