diff options
-rw-r--r-- | .github/workflows/codeql.yml | 3 | ||||
-rw-r--r-- | .github/workflows/docker.yml | 6 | ||||
-rw-r--r-- | .github/workflows/nightly.yml | 7 |
3 files changed, 5 insertions, 11 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5c0c93886..8764cdd0e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml | |||
@@ -14,9 +14,6 @@ name: "CodeQL" | |||
14 | on: | 14 | on: |
15 | push: | 15 | push: |
16 | branches: [ develop, next ] | 16 | branches: [ develop, next ] |
17 | pull_request: | ||
18 | # The branches below must be a subset of the branches above | ||
19 | branches: [ next ] | ||
20 | schedule: | 17 | schedule: |
21 | - cron: '36 9 * * 5' | 18 | - cron: '36 9 * * 5' |
22 | 19 | ||
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b4ff1a452..7afe641b3 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml | |||
@@ -24,9 +24,9 @@ jobs: | |||
24 | # FIXME: https://github.com/actions/checkout/issues/290 | 24 | # FIXME: https://github.com/actions/checkout/issues/290 |
25 | git fetch --force --tags | 25 | git fetch --force --tags |
26 | 26 | ||
27 | one="{ \"file\": \"./support/docker/production/Dockerfile.bullseye\", \"ref\": \"develop\", \"tags\": \"chocobozzz/peertube-test:develop-bullseye\" }" | 27 | one="{ \"file\": \"./support/docker/production/Dockerfile.bullseye\", \"ref\": \"develop\", \"tags\": \"chocobozzz/peertube:develop-bullseye\" }" |
28 | two="{ \"file\": \"./support/docker/production/Dockerfile.buster\", \"ref\": \"master\", \"tags\": \"chocobozzz/peertube-test:production-buster,chocobozzz/peertube-test:$(git describe --abbrev=0)-buster\" }" | 28 | two="{ \"file\": \"./support/docker/production/Dockerfile.buster\", \"ref\": \"master\", \"tags\": \"chocobozzz/peertube:production-buster,chocobozzz/peertube:$(git describe --abbrev=0)-buster\" }" |
29 | three="{ \"file\": \"./support/docker/production/Dockerfile.nginx\", \"ref\": \"master\", \"tags\": \"chocobozzz/peertube-webserver-test:latest\" }" | 29 | three="{ \"file\": \"./support/docker/production/Dockerfile.nginx\", \"ref\": \"master\", \"tags\": \"chocobozzz/peertube-webserver:latest\" }" |
30 | 30 | ||
31 | matrix="[$one,$two,$three]" | 31 | matrix="[$one,$two,$three]" |
32 | echo ::set-output name=matrix::{\"include\":$(echo $matrix)} | 32 | echo ::set-output name=matrix::{\"include\":$(echo $matrix)} |
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 156b7143a..23898b7ef 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml | |||
@@ -1,9 +1,6 @@ | |||
1 | name: Nightly | 1 | name: Nightly |
2 | 2 | ||
3 | on: | 3 | on: |
4 | push: | ||
5 | branches: | ||
6 | - 'next' | ||
7 | schedule: | 4 | schedule: |
8 | - cron: '0 3 * * *' | 5 | - cron: '0 3 * * *' |
9 | 6 | ||
@@ -17,7 +14,7 @@ jobs: | |||
17 | name: Checkout develop | 14 | name: Checkout develop |
18 | uses: actions/checkout@v2 | 15 | uses: actions/checkout@v2 |
19 | with: | 16 | with: |
20 | ref: next | 17 | ref: develop |
21 | 18 | ||
22 | - uses: './.github/actions/reusable-prepare-peertube-build' | 19 | - uses: './.github/actions/reusable-prepare-peertube-build' |
23 | with: | 20 | with: |
@@ -29,7 +26,7 @@ jobs: | |||
29 | - uses: './.github/actions/reusable-deploy' | 26 | - uses: './.github/actions/reusable-deploy' |
30 | with: | 27 | with: |
31 | source: ./peertube-nightly-* | 28 | source: ./peertube-nightly-* |
32 | destination: nightly-test | 29 | destination: nightly |
33 | knownHosts: ${{ secrets.STATS_DEPLOYEMENT_KNOWN_HOSTS }} | 30 | knownHosts: ${{ secrets.STATS_DEPLOYEMENT_KNOWN_HOSTS }} |
34 | deployKey: ${{ secrets.STATS_DEPLOYEMENT_KEY }} | 31 | deployKey: ${{ secrets.STATS_DEPLOYEMENT_KEY }} |
35 | deployUser: ${{ secrets.STATS_DEPLOYEMENT_USER }} | 32 | deployUser: ${{ secrets.STATS_DEPLOYEMENT_USER }} |