We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae630ec commit a15b792Copy full SHA for a15b792
.github/workflows/nightly.yml
@@ -63,10 +63,15 @@ jobs:
63
64
- name: Run BasicBuilds
65
run: |
66
- docker run --rm umf-ubuntu-20.04 sh -c "
67
- apt-get update && apt-get install -y curl gnupg lsb-release && \
+ docker run --rm \
+ --user root \
68
+ umf-ubuntu-20.04 \
69
+ bash -c "
70
+ apt-get update &&
71
+ apt-get install -y curl gnupg lsb-release && \
72
curl -fsSL https://cli.github.com/packages/githubcli.repo | tee /etc/apt/sources.list.d/github-cli.list && \
- apt-get update && apt-get install gh && \
73
+ apt-get update && \
74
+ apt-get install gh && \
75
gh workflow run ./.github/workflows/reusable_basic.yml
76
"
77
0 commit comments