-
Notifications
You must be signed in to change notification settings - Fork 25
73 lines (68 loc) · 2.29 KB
/
build-docker-full.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
71
72
73
name: build-docker-full
on:
workflow_call:
inputs:
version:
type: string
description: The release semver version
required: true
channel:
type: string
description: The release channel (latest-rc, nightly, dev, etc)
required: true
jobs:
buildPush:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: salesforce/cli
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
push: true
labels: ${{ steps.meta.outputs.labels }}
file: dockerfiles/Dockerfile_full
build-args: |
SF_CLI_VERSION=${{ inputs.version }}
tags: salesforce/cli:${{ inputs.channel }}-full, salesforce/cli:${{ inputs.version }}-full
verify:
needs: buildPush
runs-on: ubuntu-latest
container:
image: salesforce/cli:${{ inputs.version }}-full
steps:
- name: verify node, sf, jq
# without bash this will fail. Not sure what the default shell is but it doesn't like the [[(())]] bashism
shell: bash
run: |
set -e
node -v
sf version --verbose
jq --help
NODE_VERSION=$(sf version --verbose --json | jq '.nodeVersion')
SF_CLI_VERSION=$(sf version --verbose --json | jq '.cliVersion')
if [[ ((`echo $SF_CLI_VERSION | grep -c "@salesforce/cli/"` > 0))]]
then
echo "sf installed -" $SF_CLI_VERSION
else
echo "The sf installation could not be verified"
exit 1
fi
if [[ ((`echo $NODE_VERSION | grep -c "v"` > 0))]]
then
echo "node installed -" $NODE_VERSION
else
echo "The node installation could not be verified"
exit 1
fi