-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #475 from v1s1t0r1sh3r3/dev
Dev to master v11.0
- Loading branch information
Showing
17 changed files
with
270 additions
and
126 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#Workflow for docker autobuild in master branch | ||
|
||
name: 'Docker CI master' | ||
|
||
on: | ||
push: | ||
branches: master | ||
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:latest | ||
context: . | ||
no-cache: true | ||
push: true |
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
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
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
Oops, something went wrong.