Compare commits
7 Commits
0.9-waf
...
2.9.1-runn
| Author | SHA1 | Date | |
|---|---|---|---|
| a23671e961 | |||
| 745e2378af | |||
| bee8958456 | |||
| 0d58811815 | |||
| 7ae17012da | |||
| 73bd9a4581 | |||
| 9d9529db67 |
@@ -31,12 +31,11 @@ jobs:
|
||||
username: ${{ secrets.REGISTRY_DOCKER_USER }}
|
||||
password: ${{ secrets.REGISTRY_DOCKER_PASS }}
|
||||
|
||||
- name: git clone repo
|
||||
run: git clone https://github.com/EnableSecurity/wafw00f
|
||||
|
||||
- name: docker build and push
|
||||
- name: clone & build & push
|
||||
run: |
|
||||
docker buildx b /wafw00f/Dockerfile -t ${{ vars.DOCKER_IMAGE_WAFWOOF }}
|
||||
git clone https://github.com/EnableSecurity/wafw00f
|
||||
cd wafw00f
|
||||
docker buildx b . -t ${{ vars.DOCKER_IMAGE_WAFWOOF }}
|
||||
docker tag ${{ vars.DOCKER_IMAGE_WAFWOOF }} ${{ vars.REGISTRY_DOCKER }}/${{ vars.DOCKER_IMAGE_WAFWOOF }}
|
||||
docker push ${{ vars.REGISTRY_DOCKER }}/${{ vars.DOCKER_IMAGE_WAFWOOF }}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: Gitea Actions Demo
|
||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||
on: [never]
|
||||
on: [push]
|
||||
|
||||
## Exemple https://github.com/actions/starter-workflows/blob/main/ci/docker-publish.yml
|
||||
|
||||
@@ -13,9 +13,14 @@ jobs:
|
||||
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||
- run: echo "lala"
|
||||
- run: echo "${{ vars.TEST }}"
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ gitea.workspace }}
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
|
||||
- name: Git clone private repository
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: staffadmin/semaphore
|
||||
token: ${{ secrets.REPO_PULL_GITEA }}
|
||||
Reference in New Issue
Block a user