Skip to content

Commit

Permalink
updated actions
Browse files Browse the repository at this point in the history
Signed-off-by: Surax98 <giacomo.surace@gmail.com>
  • Loading branch information
Surax98 committed Apr 2, 2024
1 parent bda36c4 commit be4e1b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get Repo Owner
id: get_repo_owner
run: echo ::set-output name=repo_owner::$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')
run: echo "repo_owner=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
#run: echo ::set-output name=repo_owner::$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')
- name: Build container base image
uses: docker/build-push-action@v5
with:
Expand All @@ -35,5 +36,5 @@ jobs:
tags: |
ghcr.io/${{ steps.get_repo_owner.outputs.repo_owner }}/interlink-sidecar-slurm:${{ env.RELEASE_VERSION }}
ghcr.io/${{ steps.get_repo_owner.outputs.repo_owner }}/interlink-sidecar-slurm:latest
file: ./docker/Dockerfile.vk
file: ./docker/Dockerfile
platforms: linux/amd64, linux/arm64
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ builds:
- arm64
- amd64
- ppc64le
main: ./cmd/sidecars/slurm
main: ./cmd
archives:
- name_template: >-
{{ .Binary }}_
Expand Down

0 comments on commit be4e1b5

Please sign in to comment.