diff options
author | Daniil Baturin <daniil@baturin.org> | 2023-09-21 11:33:34 +0100 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2023-09-21 11:33:34 +0100 |
commit | 9de2b4691e3f901ad166c24681647da6b0f4ad29 (patch) | |
tree | 752e5b135b735fb0e4eefdbbcf8fcb3800d00072 /.github/workflows/main.yml | |
parent | e7fd54adf4a1e91d84850237c0dca1ac5bb3982f (diff) | |
parent | 1e8350a87c4b6d07b049ac0d55d5245d1a9d6910 (diff) | |
download | community.vyos.net-9de2b4691e3f901ad166c24681647da6b0f4ad29.tar.gz community.vyos.net-9de2b4691e3f901ad166c24681647da6b0f4ad29.zip |
Merge branch 'main' of github.com:vyos/community.vyos.net
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r-- | .github/workflows/main.yml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9c56c68..710c4a5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,6 +12,16 @@ on: schedule: - cron: "0 3 * * *" workflow_dispatch: + workflow_call: + secrets: + NETLIFY_SITE_NAME: + required: true + NETLIFY_TOKEN: + required: true + SOUPAULT_PROFILE: + required: true + GH_ACCESS_TOKEN: + required: true # A workflow run is made up of one or more jobs that can run sequentially or in parallel @@ -27,7 +37,10 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + repository: vyos/community.vyos.net + ref: main - name: Install build dependencies from the repos run: | |