Skip to content

Commit

Permalink
Remove build.json (#108)
Browse files Browse the repository at this point in the history
* Remove build.json

* Revert #110

* lint
  • Loading branch information
ludeeus authored Sep 25, 2021
1 parent c2d49ac commit 1110d16
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
password: ${{ secrets.GIT_TOKEN }}

- name: Publish ${{ matrix.architecture }} builder
uses: home-assistant/[email protected]
uses: ./
with:
args: |
--${{ matrix.architecture }} \
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ RUN \
&& rm -rf /root/go /root/.cache \
&& mv vcn /usr/bin/vcn \
&& if [ "${BUILD_ARCH}" = "armhf" ] || [ "${BUILD_ARCH}" = "armv7" ]; then \
wget -q -O /usr/bin/yq https:/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_arm; \
wget -q -O /usr/bin/yq "https:/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_arm"; \
elif [ "${BUILD_ARCH}" = "aarch64" ]; then \
wget -q -O /usr/bin/yq https:/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_arm64; \
wget -q -O /usr/bin/yq "https:/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_arm64"; \
elif [ "${BUILD_ARCH}" = "i386" ]; then \
wget -q -O /usr/bin/yq https:/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_386; \
wget -q -O /usr/bin/yq "https:/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_386"; \
elif [ "${BUILD_ARCH}" = "amd64" ]; then \
wget -q -O /usr/bin/yq https:/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64; \
wget -q -O /usr/bin/yq "https:/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64"; \
else \
exit 1; \
fi \
Expand Down
19 changes: 0 additions & 19 deletions build.json

This file was deleted.

0 comments on commit 1110d16

Please sign in to comment.