Skip to content

Tags: sbt-jib/sbt-jib

Tags

v2.0.1

Toggle v2.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
ci: make release publishing work on `release` events (#111)

`sbt ci-release` decides between a stable release and a snapshot by
inspecting the ref (`GITHUB_REF` / `CI_COMMIT_TAG`). On `release` events
`GITHUB_REF` can come through empty (as it did for the v2.0.0 release),
so `isTag` was false while the dynver version was a clean `2.0.0` (not a
`-SNAPSHOT`). sbt-ci-release then logged "Snapshot releases must have
-SNAPSHOT version number, doing nothing" and exited 0 — a green job that
published nothing.

Fix:
- pass the release tag explicitly via `CI_COMMIT_TAG`, which sbt-ci-release
  checks before falling back to the (empty) `GITHUB_REF`, forcing the
  stable-release path. Branch pushes leave it empty -> snapshot, as before.
- check out the tag explicitly so dynver computes the right version even
  when the ref is missing.
- add a `workflow_dispatch` (optional `tag` input) to re-run a publish
  manually without cutting a new release.

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>

v2.0.0

Toggle v2.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Cross-build the plugin for sbt 2.x (via sbt2-compat) (#109)

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: Ondra Pelech <ondra.pelech@gmail.com>

v1.4.4

Toggle v1.4.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
sbt versionScheme (#105)

v1.4.3

Toggle v1.4.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Support resolving images from local Docker daemon (with `docker://` p…

…refix) (#102)

v1.4.2

Toggle v1.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Revert "issue-96: adding volume and working directory support (#97)" (#…

…101)

This reverts commit e9ccee5.

v1.4.1

Toggle v1.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
support specify permissions to extraMapping (#98)

v1.4.0

Toggle v1.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
issue-96: adding volume and working directory support (#97)

v1.3.7

Toggle v1.3.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump jib-core (#93)

v1.3.6

Toggle v1.3.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix release (#92)

v1.3.5

Toggle v1.3.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md (#80)

Co-authored-by: Ondra Pelech <ondra.pelech@gmail.com>