Skip to content

Commit

Permalink
chore: fix alpha releases and docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
thomvaill committed Oct 29, 2024
1 parent 3a083c4 commit c92e4a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ jobs:
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: release and publish to NPM
run: yarn lerna publish --yes --conventional-commits --conventional-prerelease --dist-tag alpha --exact --create-release github
run: yarn lerna publish --yes --conventional-commits --conventional-prerelease --conventional-bump-prerelease --dist-tag alpha --exact --create-release github
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/post-release-docker-hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: build and release the latest Docker image
run: make -C docker release version-tag latest-tag
run: make -C docker release version-tag branch-tag
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Log4brains follows a **simplified Git Flow** model. Here’s how the process wor

This helps us get feedback from early adopters before merging changes into `stable`, and thus triggering a stable release.

7. **Releasing to Stable**: Once the `develop` branch is stable and tested, the maintainers will merge it into `stable`, and run manually `scripts/release.sh` to publish a new stable release to npm (TODO: should be automated in the future).
7. **Releasing to Stable**: Once the `develop` branch is stable and tested, the maintainers will merge it into `stable`, and run manually `scripts/release.sh` + `make -C docker release version-tag branch-tag latest-tag` to publish a new stable release to npm (TODO: should be automated in the future).

### Urgent hotfix specific case

Expand Down

0 comments on commit c92e4a2

Please sign in to comment.