Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Sumner Evans <sumner.evans@automattic.com>
  • Loading branch information
sumnerevans committed Jan 20, 2025
1 parent 9726ab3 commit 16cfd07
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ env:
CI_REGISTRY_IMAGE: "${{ secrets.CI_REGISTRY }}/bridge/linkedin"
GHCR_REGISTRY: ghcr.io
GHCR_REGISTRY_IMAGE: "ghcr.io/${{ github.repository }}"
BINARY_NAME: linkedin-matrix
GOTOOLCHAIN: local


Expand Down Expand Up @@ -74,13 +73,15 @@ jobs:
run: ./build.sh

- name: Generate SHA256 checksum
run: sha256sum $BINARY_NAME | tee $BINARY_NAME.sha256sum
run: sha256sum linkedin-matrix | tee linkedin-matrix.sha256sum

- name: Upload binary artifact
uses: actions/upload-artifact@v3
with:
name: $BINARY_NAME
path: $BINARY_NAME
name: linkedin-matrix
path: |
linkedin-matrix
linkedin-matrix.sha256sum
build-docker:
runs-on: ubuntu-latest
needs: build
Expand All @@ -91,8 +92,7 @@ jobs:
- name: Download binary artifact
uses: actions/download-artifact@v3
with:
name: $BINARY_NAME
path: ./
name: linkedin-matrix

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
./linkedin-matrix
/linkedin-matrix
/linkedin-matrix.sha256sum
logs/
*.db*
*.yaml
Expand Down

0 comments on commit 16cfd07

Please sign in to comment.