diff --git a/.github/workflows/deployer-image.yml b/.github/workflows/deployer-image.yml index b8dace6e..b8f6d040 100644 --- a/.github/workflows/deployer-image.yml +++ b/.github/workflows/deployer-image.yml @@ -48,6 +48,7 @@ jobs: type=ref,event=branch type=ref,event=pr type=sha + type=semver,pattern={{version}} type=raw,value=latest,enable={{is_default_branch}} - name: Build (and push on main/tags) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index fee809f1..17234ba7 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -4,6 +4,7 @@ on: push: branches: - main + workflow_dispatch: permissions: contents: write @@ -19,9 +20,10 @@ jobs: fetch-depth: 0 - name: Release Please (manifest) - uses: google-github-actions/release-please-action@v4 + uses: googleapis/release-please-action@v4 with: - command: manifest token: ${{ secrets.GITHUB_TOKEN }} + config-file: release-please-config.json + manifest-file: .release-please-manifest.json diff --git a/wasm-msg/Cargo.toml b/wasm-msg/Cargo.toml index cd784afe..3b596937 100644 --- a/wasm-msg/Cargo.toml +++ b/wasm-msg/Cargo.toml @@ -2,6 +2,7 @@ name = "wasm-msg" version = "0.1.0" edition = "2021" +publish = false [lib] crate-type = ["rlib"] # Just use rlib for now, we can add cdylib when needed