Skip to content

Commit

Permalink
Get CI/CD working again (VPS-11003)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessekempf-vsco committed Jan 29, 2024
1 parent 1a98e40 commit 9cdda71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Build dcdr
run: script/build
- name: Build and push Docker image
uses: docker/build-push-action@v1
uses: docker/build-push-action@v2
with:
registry: ${{ env.DOCKER_REGISTRY }}
username: ${{ env.DOCKER_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.archlinux
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM archlinux/base
FROM archlinux:base
ADD ./bin/dcdr /usr/bin/dcdr
ENTRYPOINT ["/usr/bin/dcdr"]

1 change: 0 additions & 1 deletion script/install
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/bin/bash
set -e

./script/bootstrap
./script/test
go install

0 comments on commit 9cdda71

Please sign in to comment.