-
Notifications
You must be signed in to change notification settings - Fork 2
70 lines (58 loc) · 2.55 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- uses: buildpacks/github-actions/[email protected]
- name: Run pack build and publish
run: |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username anthonydahanne --password-stdin
cd c-buildpacks
pack build anthonydahanne/c-buildpacks:gh-actions \
--env SERVICE_BINDING_ROOT=/platform/bindings \
--env BP_JVM_VERSION=17 \
--volume $PWD/binding/ca-certificates/:/platform/bindings/my-certificates \
--builder=paketobuildpacks/builder:0.1.210-base \
--publish
# This step runs `flyctl deploy`.
# - uses: superfly/[email protected]
# env:
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
# with:
# args: "deploy -c c-buildpacks/fly.toml"
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build, tag, and push image to Amazon ECR
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: anthony-test
IMAGE_TAG: gh-actions
run: |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login --username anthonydahanne --password-stdin
docker pull anthonydahanne/c-buildpacks:gh-actions
docker tag anthonydahanne/c-buildpacks:gh-actions $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG