Skip to content

Commit

Permalink
Merge pull request #292 from Grizzelbee/development
Browse files Browse the repository at this point in the history
fixed workflow
  • Loading branch information
Grizzelbee authored May 27, 2024
2 parents 72ab663 + fe3b163 commit f1a3296
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 432 deletions.
54 changes: 27 additions & 27 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

# Deploys the final package to NPM
deploy:
needs: [adapter-tests-gui]
needs: [adapter-tests]

# Trigger this step only when a commit on master is tagged with a version number
if: |
Expand Down Expand Up @@ -119,32 +119,32 @@ jobs:
npm whoami
npx lerna publish from-package --yes
#- name: Create Github Release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# release_name: Release v${{ steps.extract_release.outputs.VERSION }}
# draft: false
# # Prerelease versions create pre-releases on GitHub
# prerelease: ${{ contains(steps.extract_release.outputs.VERSION, '-') }}
# body: ${{ steps.extract_release.outputs.BODY }}

#- name: Notify Sentry.io about the release
# run: |
# cd packages/admin
# npm i -g @sentry/cli
# export SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
# export SENTRY_URL=https://sentry.iobroker.net
# export SENTRY_ORG=iobroker
# export SENTRY_PROJECT=iobroker-admin
# export SENTRY_VERSION=iobroker.admin@${{ steps.extract_release.outputs.VERSION }}
# export SENTRY_RELEASE=${{ steps.extract_release.outputs.VERSION }}
# sentry-cli releases new $SENTRY_VERSION
# sentry-cli releases finalize $SENTRY_VERSION
# sentry-cli sourcemaps inject ./adminWww
# sentry-cli sourcemaps upload ./adminWww
- name: Create Github Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release v${{ steps.extract_release.outputs.VERSION }}
draft: false
# Prerelease versions create pre-releases on GitHub
prerelease: ${{ contains(steps.extract_release.outputs.VERSION, '-') }}
body: ${{ steps.extract_release.outputs.BODY }}

- name: Notify Sentry.io about the release
run: |
cd packages/admin
npm i -g @sentry/cli
export SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
export SENTRY_URL=https://sentry.iobroker.net
export SENTRY_ORG=iobroker
export SENTRY_PROJECT=iobroker-admin
export SENTRY_VERSION=iobroker.admin@${{ steps.extract_release.outputs.VERSION }}
export SENTRY_RELEASE=${{ steps.extract_release.outputs.VERSION }}
sentry-cli releases new $SENTRY_VERSION
sentry-cli releases finalize $SENTRY_VERSION
sentry-cli sourcemaps inject ./adminWww
sentry-cli sourcemaps upload ./adminWww
# Dummy job for skipped builds - without this, github reports the build as failed
skip-ci:
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,18 @@ All states report whether there is a failure or not. `True` means a failure, `fa

### **WORK IN PROGRESS**

- (grizzelbee) Chg: Lamps (Product type 552a) won't generate a warning on startup anymore but show an info that they are not supported by this adapter.
- (grizzelbee) Chg: Vacuum cleaner robots (Product types 276 and 277) won't generate a warning on startup anymore but show an info that they are not supported by this adapter.
### 3.2.0 (2024-05-27) (Marching on)

- (grizzelbee) Chg: Lamps (Product type 552a) won't generate a warning on startup any longer but show an info that they are not supported by this adapter.
- (grizzelbee) Chg: Vacuum cleaner robots (Product types 276 and 277) won't generate a warning on startup any longer but show an info that they are not supported by this adapter.
- (grizzelbee) New: [#289](https://github.com/Grizzelbee/ioBroker.dysonairpurifier/issues/289) Added Support for Dyson Purifier Big+Quiet Formaldehyde (BP03, Produce type 664)
- (grizzelbee) Fix: [#287](https://github.com/Grizzelbee/ioBroker.dysonairpurifier/issues/287) Added Switzerland again to config
- (grizzelbee) Upd: Dependencies got updated
- (grizzelbee) Chg: removed obsolete index_m.html
- (grizzelbee) Fix: Fixed broken NO2Index
- (grizzelbee) Fix: Fixed broken fan speeds 0-10
- (grizzelbee) Fix: Fixed polling of sensor data
- (grizzelbee) Fix: setting fan speed = Auto works

### 3.1.10 (2024-05-14) (Marching on)

Expand Down
Loading

0 comments on commit f1a3296

Please sign in to comment.