Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 867 Bytes

RELEASING.md

File metadata and controls

25 lines (18 loc) · 867 Bytes

Relasing a new package version

Docker setup

$ docker buildx create \
  --name container-builder \
  --driver docker-container \
  --use --bootstrap

Publish package

Please release the current version of the package by following the steps below:

  • have everything you want in main branch
  • create a release and tag it with the new version number (set as latest release)
  • build the tag
    • `$ docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/simonneutert/labradorite-notebook: --push .
  • build latest main
    • docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/simonneutert/labradorite-notebook:main --push .

The new version should now be available on the GitHub Container Registry.

Celebrate 🎉