Skip to content

Commit

Permalink
#9 Change default for platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Dec 6, 2023
1 parent bfdae14 commit d2ebd1a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 \
Expand Down

0 comments on commit d2ebd1a

Please sign in to comment.