Skip to content

Commit

Permalink
fixed the backslash
Browse files Browse the repository at this point in the history
  • Loading branch information
helto4real committed Apr 1, 2021
1 parent 76b1b97 commit 71ecfea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push_docker_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: 📆 Set version number
run: |
sed -i '/ private const string Version = /c\ private const string Version = "dev build";' ${{github.workspace}}/src/DaemonRunner/DaemonRunner/Service/RunnerService.cs
sed -i '/ io.hass.version=/c\ io.hass.version="dev build"' ${{github.workspace}}/Dockerfile
sed -i '/ io.hass.version=/c\ io.hass.version="dev build" \\' ${{github.workspace}}/Dockerfile
-
name: 📎 Set up QEMU
uses: docker/setup-qemu-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tags_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: 📆 Set version number
run: |
sed -i "/ private const string Version = /c\ private const string Version = \"${{ steps.version.outputs.version }}\";" ${{github.workspace}}/src/DaemonRunner/DaemonRunner/Service/RunnerService.cs
sed -i '/ io.hass.version=/c\ io.hass.version="${{ steps.version.outputs.version }}"' ${{github.workspace}}/Dockerfile
sed -i '/ io.hass.version=/c\ io.hass.version="${{ steps.version.outputs.version }}" \\' ${{github.workspace}}/Dockerfile
-
name: 📎 Set up QEMU
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ENV \
ASPNETCORE_URLS=http://+:5000

LABEL \
io.hass.version="VERSION"
io.hass.type="addon"
io.hass.version="VERSION" \
io.hass.type="addon" \
io.hass.arch="armhf|aarch64|amd64"
ENTRYPOINT ["/init"]

0 comments on commit 71ecfea

Please sign in to comment.