Explicitly define p64/u64 functions for IDE support (#2189) #68
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 images | |
on: | |
push: | |
branches: | |
- dev | |
- beta | |
- stable | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'Gallopsled' | |
steps: | |
# Required for subdirectories in Git context | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and push base image | |
uses: docker/build-push-action@v5 | |
if: github.event_name == 'workflow_dispatch' | |
with: | |
context: "{{defaultContext}}:extra/docker/base" | |
push: true | |
tags: pwntools/pwntools:base | |
- name: Build and push stable image | |
uses: docker/build-push-action@v5 | |
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/stable') | |
with: | |
context: "{{defaultContext}}:extra/docker/stable" | |
push: true | |
tags: pwntools/pwntools:stable | |
- name: Build and push beta image | |
uses: docker/build-push-action@v5 | |
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/beta') | |
with: | |
context: "{{defaultContext}}:extra/docker/beta" | |
push: true | |
tags: pwntools/pwntools:beta | |
- name: Build and push dev image | |
uses: docker/build-push-action@v5 | |
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/dev') | |
with: | |
context: "{{defaultContext}}:extra/docker/dev" | |
push: true | |
tags: | | |
pwntools/pwntools:dev | |
pwntools/pwntools:latest | |
- name: Build and push ci image | |
uses: docker/build-push-action@v5 | |
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/dev') | |
with: | |
context: "{{defaultContext}}:travis/docker" | |
push: true | |
tags: pwntools/pwntools:ci |