Skip to content

Commit

Permalink
migrate to gha
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcgarr committed Jul 8, 2024
1 parent ead4556 commit b1ed5f2
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 23 deletions.
1 change: 1 addition & 0 deletions .github/rvu/labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
service.rvu.co.uk/brand: airship
23 changes: 0 additions & 23 deletions .github/workflows/CD.yaml

This file was deleted.

46 changes: 46 additions & 0 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: push
on: push
permissions:
contents: read
id-token: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.15"
- run: go test -v -cover $(shell go list ./... | grep -v /vendor)
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.15"
- run: CGO_ENABLED=0 GOOS=linux go build -o /go/bin/aws-sigv4-proxy
docker-latest:
if: github.ref_name == 'master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{ vars.AWS_REGION }}
role-to-assume: ${{ vars.AWS_ECR_IAM_ROLE }}
- uses: aws-actions/amazon-ecr-login@v2
with:
mask-password: "true"
- id: meta
uses: docker/metadata-action@v5
with:
images: ${{ vars.IMAGE_NAME_DEFAULT }}
tags: type=sha,prefix=,format=long,
- uses: docker/build-push-action@v5
with:
context: .
labels: ${{ steps.meta.outputs.labels }}
push: true
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit b1ed5f2

Please sign in to comment.