Skip to content
This repository was archived by the owner on Apr 19, 2025. It is now read-only.

Commit 16cfd07

Browse files
committed
wip
Signed-off-by: Sumner Evans <[email protected]>
1 parent 9726ab3 commit 16cfd07

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ env:
1414
CI_REGISTRY_IMAGE: "${{ secrets.CI_REGISTRY }}/bridge/linkedin"
1515
GHCR_REGISTRY: ghcr.io
1616
GHCR_REGISTRY_IMAGE: "ghcr.io/${{ github.repository }}"
17-
BINARY_NAME: linkedin-matrix
1817
GOTOOLCHAIN: local
1918

2019

@@ -74,13 +73,15 @@ jobs:
7473
run: ./build.sh
7574

7675
- name: Generate SHA256 checksum
77-
run: sha256sum $BINARY_NAME | tee $BINARY_NAME.sha256sum
76+
run: sha256sum linkedin-matrix | tee linkedin-matrix.sha256sum
7877

7978
- name: Upload binary artifact
8079
uses: actions/upload-artifact@v3
8180
with:
82-
name: $BINARY_NAME
83-
path: $BINARY_NAME
81+
name: linkedin-matrix
82+
path: |
83+
linkedin-matrix
84+
linkedin-matrix.sha256sum
8485
build-docker:
8586
runs-on: ubuntu-latest
8687
needs: build
@@ -91,8 +92,7 @@ jobs:
9192
- name: Download binary artifact
9293
uses: actions/download-artifact@v3
9394
with:
94-
name: $BINARY_NAME
95-
path: ./
95+
name: linkedin-matrix
9696

9797
- name: Set up Docker Buildx
9898
uses: docker/setup-buildx-action@v3

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
./linkedin-matrix
1+
/linkedin-matrix
2+
/linkedin-matrix.sha256sum
23
logs/
34
*.db*
45
*.yaml

0 commit comments

Comments
 (0)