go bin file directly

This commit is contained in:
Thomas Hobson 2021-01-28 22:53:54 +13:00
parent 6d20a108e9
commit bc8b8787ef
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 6 additions and 2 deletions

View File

@ -16,10 +16,14 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install Distrobuilder - name: Install Distrobuilder
run: sudo go get -v -x github.com/lxc/distrobuilder/distrobuilder run: |
sudo go get -v -x github.com/lxc/distrobuilder/distrobuilder
sudo python3 -m pip install pyyaml
# build container # build container
- name: Build Artifact - name: Build Artifact
run: sudo ./build.sh run: |
python3 configure.py
sudo /home/runner/go/bin/distrobuilder build-lxc build.yaml
working-directory: container working-directory: container
- name: chown everything - name: chown everything