diff --git a/.woodpecker/.build.yaml b/.woodpecker/.build.yaml new file mode 100644 index 0000000..ec3a846 --- /dev/null +++ b/.woodpecker/.build.yaml @@ -0,0 +1,7 @@ +steps: + - name: build + image: mcr.microsoft.com/dotnet/sdk:8.0 + commands: + - apt update -y + - apt install -y make zip tar + - make all \ No newline at end of file diff --git a/.woodpecker/.publish.yaml b/.woodpecker/.publish.yaml new file mode 100644 index 0000000..a25537f --- /dev/null +++ b/.woodpecker/.publish.yaml @@ -0,0 +1,10 @@ +steps: + - name: deploy + image: woodpeckerci/plugin-release + settings: + files: + - 'publish/*/*' + api_key: + from_secret: ACCESS_TOKEN +depends_on: + - build \ No newline at end of file