mirror of
https://github.com/v1s1t0r1sh3r3/airgeddon.git
synced 2025-09-06 22:27:37 +00:00
39 lines
748 B
YAML
39 lines
748 B
YAML
#Workflow for docker autobuild in dev branch
|
|
|
|
name: 'Docker CI dev'
|
|
|
|
on:
|
|
push:
|
|
branches: dev
|
|
paths:
|
|
- '**.md'
|
|
- '**.sh'
|
|
- '**.txt'
|
|
- '**.db'
|
|
- '.airgeddonrc'
|
|
- 'Dockerfile'
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Docker Hub login
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: v1s1t0r1sh3r3
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
logout: true
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
tags: v1s1t0r1sh3r3/airgeddon:beta
|
|
context: .
|
|
no-cache: true
|
|
push: true
|