Compare commits

...

3 Commits

Author SHA1 Message Date
a23671e961 [test demo] 2024-11-23 13:11:25 +01:00
745e2378af dsqfds 2023-11-20 16:00:41 +01:00
bee8958456 POUSH 2023-11-20 15:58:36 +01:00
2 changed files with 8 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ jobs:
username: ${{ secrets.REGISTRY_DOCKER_USER }} username: ${{ secrets.REGISTRY_DOCKER_USER }}
password: ${{ secrets.REGISTRY_DOCKER_PASS }} password: ${{ secrets.REGISTRY_DOCKER_PASS }}
- name: git clone repo - name: clone & build & push
run: | run: |
git clone https://github.com/EnableSecurity/wafw00f git clone https://github.com/EnableSecurity/wafw00f
cd wafw00f cd wafw00f

View File

@@ -1,6 +1,6 @@
name: Gitea Actions Demo name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 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 ## 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 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 ${{ 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 "🖥️ The workflow is now ready to test your code on the runner."
- run: echo "lala"
- run: echo "${{ vars.TEST }}" - run: echo "${{ vars.TEST }}"
- name: List files in the repository - name: List files in the repository
run: | run: |
ls ${{ gitea.workspace }} ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}." - 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 }}