-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
name: publish | ||
on: [push] | ||
jobs: | ||
publish-cldap-docker-image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build the clDAP Honeypot Docker image | ||
run: | | ||
docker build . --tag ghcr.io/im4kv/Malicious-Traffic-Research:cldap.latest | ||
docker run ghcr.io/im4kv/Malicious-Traffic-Research:cldap.latest | ||
docker push ghcr.io/im4kv/Malicious-Traffic-Research:cldap.latest | ||
publish-cldap-docker-image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Log in to the Container registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: https://ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build the cLDAP Honeypot Docker image | ||
run: | | ||
docker build . --tag ghcr.io/im4kv/Malicious-Traffic-Research:cldap.latest | ||
docker run ghcr.io/im4kv/Malicious-Traffic-Research:cldap.latest | ||
docker push ghcr.io/im4kv/Malicious-Traffic-Research:cldap.latest |