try pipeline withour checkout
This commit is contained in:
parent
51584881f0
commit
331760b44a
8 changed files with 81 additions and 0 deletions
23
.forgejo/workflows/checkout-without-checkout-action.yml
Normal file
23
.forgejo/workflows/checkout-without-checkout-action.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Super Simple Action Test mit run-Befehlen
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
test_manual_checkout:
|
||||
name: Test manueller Checkout mit Git
|
||||
runs-on: docker
|
||||
|
||||
steps:
|
||||
- name: Checkout privates Repo von git.kriegbaum.io
|
||||
run: |
|
||||
git config --global url."https://badmomber:${{ secrets.KRIEGBUAM_IO_TOKEN }}@git.kriegbaum.io".insteadOf "https://git.kriegbaum.io"
|
||||
|
||||
git clone --branch main --depth 1 https://git.kriegbaum.io/badmomber/opencqrs.git .
|
||||
|
||||
echo "Repository wurde erfolgreich in das Arbeitsverzeichnis geklont."
|
||||
|
||||
- name: Inhalt des Arbeitsverzeichnisses anzeigen
|
||||
run: |
|
||||
echo "Folgende Dateien befinden sich jetzt im Workspace:"
|
||||
ls -la
|
||||
Loading…
Add table
Add a link
Reference in a new issue