Compare commits

...

13 commits

Author SHA1 Message Date
Nuno Coração
396692e017
Update README.md
Some checks failed
Deploy Production to Firebase / build_and_deploy (push) Has been cancelled
Blowfish Docs Deploy / build (push) Has been cancelled
Test Build / Build Example Site (push) Has been cancelled
Blowfish Docs Deploy / deploy (push) Has been cancelled
2024-12-02 23:26:07 +00:00
Nuno Coração
ee5646f91b
Update create-config-zip.yml 2024-12-02 23:20:13 +00:00
Nuno Coração
07bf4e93e0
Update create-config-zip.yml 2024-12-02 23:16:27 +00:00
Nuno Coração
3bdb1205d9
Update create-config-zip.yml 2024-12-02 23:08:08 +00:00
Nuno Coração
305816b51f
Update create-config-zip.yml 2024-12-02 23:06:10 +00:00
Nuno Coração
f9c5373300
Update create-config-zip.yml 2024-12-02 23:01:41 +00:00
Nuno Coração
2bd5ad0353
Merge pull request #1865 from racehd/config-zip
⚙️ Add CI/CD pipeline to bundle config files
2024-12-02 22:57:09 +00:00
racehd
272e69f01b Merge branch 'config-zip' of https://github.com/racehd/blowfish into config-zip 2024-12-02 13:39:33 -05:00
racehd
9f700552bc Add CI/CD pipeline to bundle config files
The CI/CD pipeline will trigger when changes are pushed to config/_default/**. The pipeline will then package the config files into a zip and make them available at a static URL: https://github.com/nunocoracao/blowfish/releases/download/latest/config-default.zip
2024-12-02 13:38:45 -05:00
racehd
08bfbf4cae Update config zip for main branch, and add manual toggle button 2024-12-02 13:31:14 -05:00
racehd
297cc1aef5 Arbitrary Change for initial config zip 2024-12-02 13:26:22 -05:00
racehd
ec7a3ed420 Arbitrary Change for initial config zip 2024-12-02 13:25:59 -05:00
racehd
c8cf84cf9f Add CI/CD pipeline to bundle config files
The CI/CD pipeline will trigger when changes are pushed to config/_default/**. The pipeline will then package the config files into a zip and make them available at a static URL: https://github.com/nunocoracao/blowfish/releases/download/latest/config-default.zip
2024-12-02 13:25:33 -05:00
2 changed files with 23 additions and 2 deletions

21
.github/workflows/create-config-zip.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: Create ZIP
on:
release:
types: [published]
workflow_dispatch:
jobs:
zip:
runs-on: ubuntu-latest
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
uses: softprops/action-gh-release@v1
with:
files: config-default.zip
tag_name: ${{ github.event.release.tag_name }}

View file

@ -119,7 +119,7 @@ blowfish-tools new mynewsite
3. In the root folder of your website, delete the `config.toml` file that was generated by Hugo. Copy the `*.toml` config files from the theme into your `config/_default/` folder.
You will find these theme config files in the Hugo cache directory, or [download a copy](https://minhaskamal.github.io/DownGit/#/home?url=https://github.com/nunocoracao/blowfish/tree/main/config/_default) from GitHub.
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.
4. Follow the [Getting Started](https://blowfish.page/docs/getting-started/) instructions to configure your website.
@ -146,7 +146,7 @@ blowfish-tools new mynewsite
> **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://minhaskamal.github.io/DownGit/#/home?url=https://github.com/nunocoracao/blowfish/tree/main/config/_default) from GitHub.
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.