aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release-build.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml
index 8d8bc68..cdd539a 100644
--- a/.github/workflows/release-build.yaml
+++ b/.github/workflows/release-build.yaml
@@ -17,7 +17,7 @@ jobs:
steps:
- name: "Install dependencies"
run: |-
- apt-get install --yes python3-git
+ sudo apt-get install --yes python3-git
- name: "Checkout Repository"
uses: actions/checkout@v3
@@ -42,4 +42,4 @@ jobs:
steps:
- name: "Run builder for Debian ${{ matrix.version }} ${{ matrix.arch }}"
run: |-
- ./build.py ${{ github.event.client_payload.version }} debian ${{ matrix.arch }} ${{ matrix.version }}
+ sudo ./build.py ${{ github.event.client_payload.version }} debian ${{ matrix.arch }} ${{ matrix.version }}
bgstack15