Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
Release 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dougfabris committed Apr 13, 2021
1 parent 7fa5663 commit 9675a12
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 9 deletions.
Empty file modified .github/actions/loki/test/entrypoint.sh
100644 → 100755
Empty file.
33 changes: 26 additions & 7 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,32 @@ jobs:
- run: yarn install
if: steps.yarn-cache.outputs.cache-hit != 'true'
- run: yarn run build
- run: yarn publish from-package --yes
if: github.ref == 'refs/heads/master'
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
- run: yarn publish --canary --preid dev --dist-tag next --yes
if: github.ref == 'refs/heads/develop'
- run: yarn release

publish-to-gh-pages:
name: Publish to GitHub Pages
runs-on: ubuntu-latest
needs:
- build-and-test
environment:
name: github-pages
steps:
- uses: actions/checkout@v2
with:
ref: gh-pages
- uses: actions/download-artifact@v2
with:
name: storybooks
path: |
storybook-static
- uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: "storybook-static"
commit_message: "Deploy to Github Pages [skip ci]"
jekyll: false
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
- run: yarn release -y
- run: yarn deploy-storybook
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ jobs:
- uses: actions/download-artifact@v2
with:
name: "storybooks-${{ github.event.number }}"
path: packages
path: |
storybook-static
- run: |
cat package.json | sed s/\.docker/.app/ > package.json-new
mv package.json-new package.json
- uses: ./.github/actions/loki/test
with:
working_dir: .
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 1.9.2 - 2021-04-13
bump version

## 1.9.1 - 2021-04-12
[CHORE] Circle CI to github actions #577
[CHORE] Remove circle CI #580

## 1.9.0 - 2021-03-22
[FIX] Add sanitizer to prevent XSS attacks
[FIX] Wrong Hebrew word הדועה to הודעה #556
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rocket.chat/livechat",
"version": "1.9.0",
"version": "1.9.2",
"files": [
"/build"
],
Expand Down

0 comments on commit 9675a12

Please sign in to comment.