Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash

docker login
docker build -t programic/pipe-deploy-swarm:latest .
docker push programic/pipe-deploy-swarm:latest
docker buildx create --name docker-multiplatform --bootstrap --use
docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v8 -t programic/pipe-deploy-swarm:latest .
2 changes: 1 addition & 1 deletion pipe/pipe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ create_sentry_release() {
sentry-cli releases new --finalize --project "${PROJECT_NAME}" "${SENTRY_RELEASE}"
success "Created new Sentry release"

sentry-cli releases set-commits --ignore-empty --ignore-missing --auto "${SENTRY_RELEASE}"
sentry-cli releases set-commits --ignore-empty --ignore-missing --auto "${SENTRY_RELEASE}" || true
success "Associate commits with the release"
}

Expand Down