diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dc63aa..0f00a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), [markdownlint](https://dlaa.me/markdownlint/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.0] - 2023-12-06 + +### Changed in 1.1.0 + +- Uses `docker/login-action` to log into DockerHub +- `platforms:` default is now `linux/amd64,linux/arm64` + ## [1.0.1] - 2023-09-29 ### Changed in 1.0.1 diff --git a/action.yaml b/action.yaml index 3569caf..015cda4 100644 --- a/action.yaml +++ b/action.yaml @@ -19,7 +19,7 @@ inputs: description: Access Token for Docker registry required: true platforms: - default: linux/amd64 + default: linux/amd64,linux/arm64 description: Comma-separated list of docker platforms to build (hint - See output of docker buildx ls) registry-server: default: docker.io @@ -46,9 +46,9 @@ runs: - name: Dockerhub login uses: docker/login-action@v3 with: - registry: ${{ inputs.registry-server }} - username: ${{ inputs.username }} - password: ${{ inputs.password }} + registry: ${{ inputs.registry-server }} + username: ${{ inputs.username }} + password: ${{ inputs.password }} - name: Docker build images run: | docker buildx build \