Merge pull request #1872 from racehd/config-zip

⚙️Update `Create Config Zip` pipeline to trigger on release
This commit is contained in:
Nuno Coração 2025-01-10 22:55:41 +00:00 committed by GitHub
commit 21a7eafd89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 8 deletions

View file

@ -1,4 +1,4 @@
name: Create ZIP
name: Create Config ZIP
on:
release:
types: [published]
@ -10,12 +10,16 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: zip -r config-default.zip config/_default
- uses: actions/upload-artifact@v3
with:
name: config-default
path: config-default.zip
- name: Upload to release
- name: Create/Update latest release # adds file static url
uses: softprops/action-gh-release@v1
with:
files: config-default.zip
tag_name: ${{ github.event.release.tag_name }}
tag_name: latest
name: Latest Config Files
body: Automated config files bundle
- name: Add to version release # adds file to the release assets
if: github.event_name == 'release' # run on actual releases, not manual triggers
uses: softprops/action-gh-release@v1
with:
files: config-default.zip
tag_name: ${{ github.event.release.tag_name }}

View file

@ -145,7 +145,7 @@ blowfish-tools new mynewsite
4. In the root folder of your website, delete the `hugo.toml` file that was generated by Hugo. Copy the `*.toml` config files from the theme into your `config/_default/` folder.
> **Note:** Do not overwrite the `module.toml` file you created above!
You will find these theme config files in the Hugo cache directory, or [download a copy](https://github.com/nunocoracao/blowfish/releases/latest/download/config-default.zip) from GitHub.
5. Follow the [Getting Started](https://blowfish.page/docs/getting-started/) instructions to configure your website.