From 0fdc40a95c06c58460e58e1a8eb5f812caba034e Mon Sep 17 00:00:00 2001 From: DevOps Date: Sun, 21 Jun 2026 21:36:45 +0200 Subject: [PATCH] test: checkout + GITEA_OUTPUT --- .gitea/workflows/deploy-test5.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/deploy-test5.yaml diff --git a/.gitea/workflows/deploy-test5.yaml b/.gitea/workflows/deploy-test5.yaml new file mode 100644 index 0000000..70aeda7 --- /dev/null +++ b/.gitea/workflows/deploy-test5.yaml @@ -0,0 +1,19 @@ +name: Deploy Test5 +run-name: Deploy Test5 + +on: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: main + - name: Resolve Version + id: version + run: | + VERSION=$(cat VERSION | tr -d '[:space:]') + echo "version=${VERSION}" >> "$GITEA_OUTPUT"