Skip to content

Commit

Permalink
fix: remove first-release flag
Browse files Browse the repository at this point in the history
  • Loading branch information
t0bst4r committed Oct 27, 2024
1 parent 2c1de58 commit 3b90bfe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
key: ${{ runner.os }}-nx

- run: npm ci
- run: npx nx release version --first-release
- run: npx nx release version
- name: Extract new Version
run: |
PACKAGE_VERSION=$(node -p "require('home-assistant-matter-hub/package.json').version")
echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> "$GITHUB_ENV"
- run: npx nx release changelog --version $PACKAGE_VERSION --first-release
- run: npx nx release changelog --version $PACKAGE_VERSION
- run: npm run pull-request
- name: Commit, tag and push
run: |
Expand All @@ -59,7 +59,7 @@ jobs:
- env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: false
run: npx nx release publish --first-release
run: npx nx release publish
- run: |
gh release create v$PACKAGE_VERSION \
--latest \
Expand Down
12 changes: 6 additions & 6 deletions apps/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM node:20-slim

ENV HAMH_LOG_LEVEL "info"
ENV HAMH_DISABLE_LOG_COLORS "false"
ENV HAMH_LOG_LEVEL="info"
ENV HAMH_DISABLE_LOG_COLORS="false"

ENV HAMH_STORAGE_LOCATION "/data"
ENV HAMH_STORAGE_LOCATION="/data"
VOLUME /data

ENV HAMH_WEB_PORT 8482
ENV HAMH_WEB_PORT=8482
EXPOSE 8482

ENV HAMH_HOME_ASSISTANT_URL "http://x.x.x.x:yyyy"
ENV HAMH_HOME_ASSISTANT_ACCESS_TOKEN "access-token"
ENV HAMH_HOME_ASSISTANT_URL="http://x.x.x.x:yyyy"
ENV HAMH_HOME_ASSISTANT_ACCESS_TOKEN="access-token"

RUN mkdir /install
COPY package.tgz /install/app.tgz
Expand Down

0 comments on commit 3b90bfe

Please sign in to comment.