Skip to content

Commit 11ee43a

Browse files
Update main.yml
1 parent a0751f2 commit 11ee43a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@ jobs:
3636

3737
- name: Make Release
3838
# if: (github.event_name == 'release')
39-
run: alr publish --skip-build ${{github.server_url}}/${{github.repository}} ${{github.sha}} # TODO: remove --skip-build when resources crate is published
39+
run: |
40+
# Set user GitHub login required for `alr publish`
41+
alr config --set --global user.github_login ${{github.repository_owner}}
42+
43+
# Run Alire publish assistant
44+
alr publish --skip-build ${{github.server_url}}/${{github.repository}} ${{github.sha}} # TODO: remove --skip-build when resources crate is published
4045
4146
- name: Get Name of manifest
4247
# if: (github.event_name == 'release')

0 commit comments

Comments
 (0)