.gitea/workflows/build.yaml aktualisiert

This commit is contained in:
2025-08-04 21:56:39 +02:00
parent 415d6c23cc
commit 5885fedaf7

View File

@@ -4,9 +4,9 @@ on: [push]
jobs: jobs:
Explore-Gitea-Actions: Explore-Gitea-Actions:
runs-on: synology-label runs-on: ubuntu-latest
container: #container:
image: node:20 # image: node:20
steps: steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
@@ -19,6 +19,10 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
token: ${{ secrets.GT_TOKEN }} token: ${{ secrets.GT_TOKEN }}
- name: build go
run: go build .
- name: show golang
run: ls -a
- name: Show repo contents - name: Show repo contents
run: ls -la run: ls -la