]> git.openstreetmap.org Git - dns.git/commitdiff
Merge pull request #19 from Firefishy/add-github-action-check
authorTom Hughes <tom@compton.nu>
Mon, 28 Nov 2022 13:30:38 +0000 (13:30 +0000)
committerGitHub <noreply@github.com>
Mon, 28 Nov 2022 13:30:38 +0000 (13:30 +0000)
Add missing github action sudo

.github/workflows/check.yml

index 2c1dd4467ff4191f0c94e1e2d50984521f3e2f1b..34cbb7fc75b693ec2f1628fbb05ae5d931bf65c6 100644 (file)
@@ -18,8 +18,8 @@ jobs:
 
     - name: Install dependencies
       run: |
-        apt-get update
-        apt-get install -y --no-install-recommends \
+        sudo apt-get update
+        sudo apt-get install -y --no-install-recommends \
           make \
           libxml-treebuilder-perl \
           libyaml-libyaml-perl \
@@ -28,10 +28,12 @@ jobs:
           gh
 
     - name: Install dnscontrol
+      env:
+        GH_TOKEN: ${{ github.token }}
       run: |
         arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) \
-        && gh release download --pattern 'dnscontrol-*.${arch}.deb --output /tmp/dnscontrol.deb \
-        && apt install /tmp/dnscontrol.deb -y
+        && gh release download --repo https://github.com/StackExchange/dnscontrol --pattern "dnscontrol-*.${arch}.deb" --output /tmp/dnscontrol.deb \
+        && sudo apt install /tmp/dnscontrol.deb -y
 
     - name: Run Check
       run: |