-
Notifications
You must be signed in to change notification settings - Fork 65
60 lines (49 loc) · 1.66 KB
/
acr_wildfly_README_md.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
on:
schedule:
- cron: '0 5 * * 5'
workflow_dispatch:
name: 'acr/wildfly/README.md'
jobs:
validate:
runs-on: 'ubuntu-latest'
steps:
- uses: 'azure/login@v1'
with:
subscription-id: '${{ secrets.AZURE_SUBSCRIPTION_ID }}'
client-id: '${{ secrets.AZURE_CLIENT_ID }}'
tenant-id: '${{ secrets.AZURE_TENANT_ID }}'
- uses: 'actions/checkout@v3'
- run: |
if [[ -z $REGION ]]; then
export REGION=westus
fi
if [[ -z $REGION ]]; then
export REGION=westus
fi
if [[ -z $RESOURCE_GROUP ]]; then
export RESOURCE_GROUP=joazrg-$RANDOM
echo "Using '"$RESOURCE_GROUP"' as resource group"
fi
az group create --name $RESOURCE_GROUP --location $REGION
if [[ -z $ACR_NAME ]]; then
export ACR_NAME=joazcr$RANDOM
fi
az acr create \
--name $ACR_NAME \
--resource-group $RESOURCE_GROUP \
--sku Basic \
--admin-enabled true
cd acr/wildfly
mvn package
export ACR_WILDFLY_IMAGE=wildfly:latest
az acr build --registry $ACR_NAME --image $ACR_WILDFLY_IMAGE .
cd ../..
export RESULT=$(az acr repository show --name $ACR_NAME --image $ACR_WILDFLY_IMAGE)
az group delete --name $RESOURCE_GROUP --yes || true
if [[ -z $RESULT ]]; then
echo "Unable to find $ACR_WILDFLY_IMAGE image"
exit 1
fi
permissions:
contents: 'read'
id-token: 'write'