Private
Public Access
2
0

7 Commits

Author SHA1 Message Date
5d6d402612 Update seb4itik/byow/galaxy.yml
All checks were successful
Publish collection to Galaxy / publish (push) Successful in 39s
2026-04-08 11:58:22 +02:00
9c9861f74e caddy: fix bug default custom_cer_file
Some checks failed
Publish collection to Galaxy / publish (push) Has been cancelled
2026-04-08 12:57:23 +03:00
05f415d727 Update seb4itik/byow/galaxy.yml
All checks were successful
Publish collection to Galaxy / publish (push) Successful in 39s
2026-04-08 11:50:39 +02:00
8109fcd18b caddy: Fix bug default custom_cert
Some checks failed
Publish collection to Galaxy / publish (push) Has been cancelled
2026-04-08 12:50:03 +03:00
f5b4a493fd Update seb4itik/byow/galaxy.yml
All checks were successful
Publish collection to Galaxy / publish (push) Successful in 39s
2026-04-08 08:54:38 +02:00
15fc072b76 Update .gitea/workflows/publish.yml
Some checks failed
Publish collection to Galaxy / publish (push) Has been cancelled
2026-04-08 08:54:01 +02:00
2f1623b853 Update seb4itik/byow/galaxy.yml
Some checks failed
Publish collection to Galaxy / publish (push) Failing after 39s
2026-04-08 08:08:11 +02:00
3 changed files with 12 additions and 12 deletions

View File

@@ -22,12 +22,12 @@ jobs:
# - uses: actions/gitea-upload-artifact@v3 # - uses: actions/gitea-upload-artifact@v3
# with: # with:
# path: /workspace/itik/bgwaf/seb4itik/byow/seb4itik-byow-0.1.2.tar.gz # path: /workspace/itik/bgwaf/seb4itik/byow/seb4itik-byow-0.1.2.tar.gz
- name: Push artifacts # - name: Push artifacts
run: | # run: |
GITEA_REPO_OWNER=$(echo $GITEA_REPOSITORY | cut -d"/" -f1) && \ # GITEA_REPO_OWNER=$(echo $GITEA_REPOSITORY | cut -d"/" -f1) && \
GITEA_REPO_NAME=$(echo $GITEA_REPOSITORY | cut -d"/" -f2) && \ # GITEA_REPO_NAME=$(echo $GITEA_REPOSITORY | cut -d"/" -f2) && \
curl \ # curl \
-X PUT \ # -X PUT \
-H "Authorization: token ${{ secrets.CI_GITEA_PACKAGES_TOKEN }}" \ # -H "Authorization: token ${{ secrets.CI_GITEA_PACKAGES_TOKEN }}" \
--upload-file seb4itik-byow-${VER}.tar.gz \ # --upload-file seb4itik-byow-${VER}.tar.gz \
$GITEA_SERVER_URL/api/packages/${GITEA_REPO_OWNER}/generic/${GITEA_REPO_NAME}/${GITEA_SHA}/seb4itik-byow-${VER}.tar.gz # $GITEA_SERVER_URL/api/packages/${GITEA_REPO_OWNER}/generic/${GITEA_REPO_NAME}/${GITEA_SHA}/seb4itik-byow-${VER}.tar.gz

View File

@@ -1,6 +1,6 @@
namespace: "seb4itik" namespace: "seb4itik"
name: "byow" name: "byow"
version: "0.3.1" version: "0.3.5"
readme: "README.md" readme: "README.md"
authors: authors:
- "S. Namèche <sebastien@itik.fr>" - "S. Namèche <sebastien@itik.fr>"

View File

@@ -178,8 +178,8 @@
} }
{% endfor %} {% endfor %}
{% if site.custom_cert | default (false) %} {% if site.custom_cert | default(caddy_sites_defaults.custom_cert) %}
tls {{ site.custom_cert_file }} {{ site.custom_cert_key_file }} tls {{ site.custom_cert_file | default(caddy_sites_defaults.custom_cert_file) }} {{ site.custom_cert_key_file | default(caddy_sites_defaults.custom_cert_key_file) }}
{% endif %} {% endif %}
{% if site.filter_blacklist | default(caddy_sites_defaults.filter_blacklist) | length > 0 %} {% if site.filter_blacklist | default(caddy_sites_defaults.filter_blacklist) | length > 0 %}