Skip to content

Commit

Permalink
fix attempt for `[ERROR] {"errors":[{"code":"BLOB_UPLOAD_UNKNOWN","me…
Browse files Browse the repository at this point in the history
…ssage":"blob upload unknown to registry"}]}`

See also GoogleContainerTools/jib#2372
  • Loading branch information
nitram509 committed Feb 19, 2024
1 parent a593bfb commit 89228f4
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 19 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
maven-usr: ${{ secrets.MAVEN_CENTRAL_DEPLOYMENT_USR }}
maven-psw: ${{ secrets.MAVEN_CENTRAL_DEPLOYMENT_PSW }}
maven-gpg-passphrase: ${{ secrets.MAVEN_CENTRAL_GPG_SIGNING_KEY_PASSPHRASE }}
maven-release-options: -Djib.serialize=true
github-token: ${{ secrets.GITHUB_TOKEN }}
id: release
- if: github.event.release
Expand Down
43 changes: 24 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.zeebe</groupId>
Expand All @@ -12,7 +14,7 @@
<artifactId>camunda-release-parent</artifactId>
<version>3.9.1</version>
<!-- do not remove empty tag - http://jira.codehaus.org/browse/MNG-4687 -->
<relativePath />
<relativePath/>
</parent>

<properties>
Expand Down Expand Up @@ -140,8 +142,8 @@
</dependency>

<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>

<dependency>
Expand Down Expand Up @@ -361,19 +363,20 @@
</execution>
</executions>
<configuration>
<from>
<image>${jib-maven-plugin.image}</image>
<platforms>
<platform>
<architecture>amd64</architecture>
<os>linux</os>
</platform>
<platform>
<architecture>arm64</architecture>
<os>linux</os>
</platform>
</platforms>
</from>

<from>
<image>${jib-maven-plugin.image}</image>
<platforms>
<platform>
<architecture>amd64</architecture>
<os>linux</os>
</platform>
<platform>
<architecture>arm64</architecture>
<os>linux</os>
</platform>
</platforms>
</from>
<to>
<image>ghcr.io/camunda-community-hub/zeebe-simple-monitor</image>
<tags>${project.version}</tags>
Expand Down Expand Up @@ -512,8 +515,10 @@

<scm>
<url>https://github.com/camunda-community-hub/zeebe-simple-monitor</url>
<connection>scm:git:[email protected]:camunda-community-hub/zeebe-simple-monitor.git</connection>
<developerConnection>scm:git:[email protected]:camunda-community-hub/zeebe-simple-monitor.git</developerConnection>
<connection>scm:git:[email protected]:camunda-community-hub/zeebe-simple-monitor.git
</connection>
<developerConnection>scm:git:[email protected]:camunda-community-hub/zeebe-simple-monitor.git
</developerConnection>
<tag>HEAD</tag>
</scm>

Expand Down

0 comments on commit 89228f4

Please sign in to comment.