Skip to content

Commit

Permalink
Merge branch 'release/1.0.19'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Buchholz committed Aug 18, 2021
2 parents 6a3070c + 0d6de51 commit 216661f
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ updates:
schedule:
interval: "daily"
reviewers:
- PKuebler
- NeroAzure
assignees:
- PKuebler
- NeroAzure
35 changes: 35 additions & 0 deletions .github/workflows/buildEdgeImage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build edge image

on:
push:
branches:
- develop

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
sourceboat/aws-deploy:edge
47 changes: 47 additions & 0 deletions .github/workflows/buildStableImage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build stable image

on:
push:
tags:
- '*.*.*'

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: |
sourceboat/aws-deploy
flavour: |
latest=true
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM amazon/aws-cli:2.2.15
FROM amazon/aws-cli:2.2.29

# install git
RUN yum install -y git \
Expand Down

0 comments on commit 216661f

Please sign in to comment.