Merge pull request #837 from splunk/ar_improvements #139
This file contains 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: publish-docker-image | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
#We can trivially combine these next two steps. In the original | |
#test, these were two different steps - | |
#build-docker-image and publish-docker-image | |
publish-docker-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: 'develop' | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: docker/ | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: splunk/attack_range:latest |