fix(event-loop.conf): comment out unused user-agent check and output … #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build EventLoop Logstash dockerhub image | |
| on: | |
| push: | |
| branches: | |
| - "event-loop" | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Docker Build & Push Action | |
| uses: mr-smithers-excellent/docker-build-push@v6 | |
| with: | |
| image: atlasanalyticsservice/uc_ls_event-loop | |
| dockerfile: Dockerfile_event-loop | |
| tags: latest, ${{ github.sha }} | |
| registry: docker.io | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Repository Dispatch | |
| uses: peter-evans/repository-dispatch@v4 | |
| with: | |
| token: ${{ secrets.AAAS_GITOPS_DEPLOY_TRIGGER }} | |
| repository: maniaclab/flux_apps | |
| event-type: gitops-uc-ls-event-loop-trigger | |
| client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' |