diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-02-11 21:46:39 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-02-11 21:46:39 -0500 |
commit | 8b755c3b7414b9e9d119c8f96456e59dff57cabd (patch) | |
tree | beafff4f4fbe20b32e7c8f7b583012a3dead2a82 | |
parent | Accept master as jvers (diff) | |
download | jellyfin-packaging-8b755c3b7414b9e9d119c8f96456e59dff57cabd.tar.gz jellyfin-packaging-8b755c3b7414b9e9d119c8f96456e59dff57cabd.tar.bz2 jellyfin-packaging-8b755c3b7414b9e9d119c8f96456e59dff57cabd.zip |
Use sudo for commands
-rw-r--r-- | .github/workflows/release-build.yaml | 4 |
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 }} |