diff options
author | Daniil Baturin <daniil@baturin.org> | 2021-05-12 01:18:53 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2021-05-12 01:18:53 +0700 |
commit | c41e8a8a487e331f8c18f2006043ec5c38de2261 (patch) | |
tree | c9607512a954f970ca31d5912b665cbc79c32b08 | |
parent | ad9028764fd45d91d01182567161b62714fac032 (diff) | |
download | community.vyos.net-c41e8a8a487e331f8c18f2006043ec5c38de2261.tar.gz community.vyos.net-c41e8a8a487e331f8c18f2006043ec5c38de2261.zip |
Use soupault 2.7.0 and the new multi-profile mechanism
to enable the warning banner and S3 listings separately.
-rw-r--r-- | .github/workflows/main.yml | 4 | ||||
-rw-r--r-- | soupault.conf | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1a8db95..8c63640 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,7 @@ jobs: - name: Install soupault env: - SOUPAULT_VERSION: 2.6.0 + SOUPAULT_VERSION: 2.7.0 run: | echo Downloading and unpacking soupault wget https://github.com/dmbaturin/soupault/releases/download/$SOUPAULT_VERSION/soupault-$SOUPAULT_VERSION-linux-x86_64.tar.gz @@ -50,7 +50,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} SNAPSHOTS_BUCKET: ${{ secrets.SNAPSHOTS_BUCKET }} - SOUPAULT_OPTS: "--profile ${{ secrets.SOUPAULT_PROFILE }}" + SOUPAULT_OPTS: "--profile ${{ secrets.SOUPAULT_PROFILE }} --profile live" run: | make all diff --git a/soupault.conf b/soupault.conf index 4cd2a34..5d89d98 100644 --- a/soupault.conf +++ b/soupault.conf @@ -58,6 +58,7 @@ action = "append_child" page = "get/snapshots.md" + profile = "live" ## Nightly build image listing generator ## @@ -77,6 +78,7 @@ selector = "div#content" action = "append_child" page = "get/nightly-builds.md" + profile = "live" # Generates a list of the "current" branch builds from S3 [widgets.list-nightly-builds-current] |