From c706ad0c0cb2a05076e06755f2c2e771eedb2140 Mon Sep 17 00:00:00 2001 From: Igor Zubkov Date: Tue, 21 Apr 2026 14:55:13 +0200 Subject: [PATCH] Prototype publish GitHub Action --- .github/workflows/publish.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..0e50330 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,16 @@ +name: "Publish" + +on: + push: + branches: + - "master" + workflow_dispatch: {} + schedule: + - cron: "0 21 * * 6" + +permissions: + contents: read + +jobs: + publish: + runs-on: ubuntu-24.04