-
Notifications
You must be signed in to change notification settings - Fork 1
31 lines (27 loc) · 935 Bytes
/
AF.yaml
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
name: Build Analisys Facilities Monitoring Logstash dockerhub image
on:
push:
branches:
- "af"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Docker Build & Push Action
uses: mr-smithers-excellent/[email protected]
with:
image: atlasanalyticsservice/uc_ls_af
dockerfile: Dockerfile.AF
tags: latest, ${{ github.sha }}
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Repository Dispatch
uses: peter-evans/[email protected]
with:
token: ${{ secrets.AAAS_GITOPS_DEPLOY_TRIGGER }}
repository: maniaclab/flux_apps
event-type: gitops-uc-ls-af-app-trigger
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'