Skip to content

Commit

Permalink
Merge pull request #25 from mattwebbio/addArm64Image
Browse files Browse the repository at this point in the history
Add `arm` and `arm64` support
  • Loading branch information
mattwebbio authored Sep 12, 2022
2 parents 51d10b2 + d8a7a54 commit 6926670
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 7 deletions.
30 changes: 25 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: 'arm64,arm'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
Expand All @@ -24,16 +28,32 @@ jobs:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate tags
id: docker_tags
uses: docker/metadata-action@v3
with:
images: |
mattwebbio/orbital-sync
ghcr.io/mattwebbio/orbital-sync
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: |
ghcr.io/mattwebbio/orbital-sync:latest
ghcr.io/mattwebbio/orbital-sync:${{ github.ref_name }}
mattwebbio/orbital-sync:latest
mattwebbio/orbital-sync:${{ github.ref_name }}
tags: ${{ steps.docker_tags.outputs.tags }}
labels: ${{ steps.docker_tags.outputs.labels }}
platforms: |
linux/amd64
linux/arm64
linux/arm
- name: Update DockerHub description
uses: peter-evans/dockerhub-description@v3
with:
Expand Down
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,28 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v1.1.2](https://github.com/mattwebbio/orbital-sync/compare/v1.1.1...v1.1.2)

- Add `arm` and `arm64` Docker images [`422286d`](https://github.com/mattwebbio/orbital-sync/commit/422286da37f011d5630dd5e878d537d7d3684f17)

#### [v1.1.1](https://github.com/mattwebbio/orbital-sync/compare/v1.1.0...v1.1.1)

> 12 September 2022
- Bump @types/node from 18.7.15 to 18.7.16 [`#23`](https://github.com/mattwebbio/orbital-sync/pull/23)
- Bump @typescript-eslint/parser from 5.36.1 to 5.36.2 [`#20`](https://github.com/mattwebbio/orbital-sync/pull/20)
- Bump node-html-parser from 5.4.2 to 6.0.0 [`#22`](https://github.com/mattwebbio/orbital-sync/pull/22)
- Bump typescript from 4.8.2 to 4.8.3 [`#21`](https://github.com/mattwebbio/orbital-sync/pull/21)
- Bump @typescript-eslint/eslint-plugin from 5.36.1 to 5.36.2 [`#19`](https://github.com/mattwebbio/orbital-sync/pull/19)
- Bump jest and @types/jest [`#18`](https://github.com/mattwebbio/orbital-sync/pull/18)
- Use `docker/metadata-action` for tagging [`53b8680`](https://github.com/mattwebbio/orbital-sync/commit/53b86802ae688659ad60050dcbc0df2933db321b)
- Update CHANGELOG.md [`16c7d42`](https://github.com/mattwebbio/orbital-sync/commit/16c7d42eeb02a6521afeac938329aecdf3d328bc)
- Add `arm` and `arm64` Docker images [`f23edc7`](https://github.com/mattwebbio/orbital-sync/commit/f23edc773f85c37720dcdd58f37cc89544b1f58a)

#### [v1.1.0](https://github.com/mattwebbio/orbital-sync/compare/v1.0.3...v1.1.0)

> 4 September 2022
- Make e2e test more robust [`#14`](https://github.com/mattwebbio/orbital-sync/pull/14)
- Bump node-html-parser from 5.4.2-0 to 5.4.2 [`#11`](https://github.com/mattwebbio/orbital-sync/pull/11)
- Bump @types/luxon from 3.0.0 to 3.0.1 [`#12`](https://github.com/mattwebbio/orbital-sync/pull/12)
Expand All @@ -15,7 +35,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
- Bump @typescript-eslint/parser from 5.35.1 to 5.36.1 [`#3`](https://github.com/mattwebbio/orbital-sync/pull/3)
- Add changelog [`217e552`](https://github.com/mattwebbio/orbital-sync/commit/217e55264dc57ac487d4a892a4cdaa391a73ebc6)
- Add issue templates [`3d6ff1e`](https://github.com/mattwebbio/orbital-sync/commit/3d6ff1e5aa45b17f8cc28d54fa41a7ddd04c4f81)
- Add more badges to README [`850256f`](https://github.com/mattwebbio/orbital-sync/commit/850256f6428df59a9b5e2e1b6668e333582135d9)
- Update CHANGELOG.md [`71ad307`](https://github.com/mattwebbio/orbital-sync/commit/71ad30792fe21ef6595b0e7f92db90b1eeafd127)

#### [v1.0.3](https://github.com/mattwebbio/orbital-sync/compare/v1.0.2...v1.0.3)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orbital-sync",
"version": "1.1.0",
"version": "1.1.2",
"type": "module",
"main": "dist/index.js",
"license": "MIT",
Expand Down

0 comments on commit 6926670

Please sign in to comment.