Docker containers I use in CI workflows, for AMD64, ARM64 (AARCH64) and RISC-V 64

Setting version tag back to v

+6 -6
+6 -6
.woodpecker/release.yaml
··· 8 8 9 9 when: 10 10 event: [tag, manual] 11 - ref: refs/tags/ver* 11 + ref: refs/tags/v* 12 12 13 13 steps: 14 14 make-changelog-system: 15 - image: codeberg.org/release-candidate/ci-system:${CI_COMMIT_TAG##ver} 15 + image: codeberg.org/release-candidate/ci-system:${CI_COMMIT_TAG##v} 16 16 commands: 17 - - echo "## Version ${CI_COMMIT_TAG##ver} ($(date +"%Y-%m-%d"))" > ./latest_changelog.md 17 + - echo "## Version ${CI_COMMIT_TAG##v} ($(date +"%Y-%m-%d"))" > ./latest_changelog.md 18 18 - echo "" >> ./latest_changelog.md 19 - - echo "Using Alpine ${CI_COMMIT_TAG##ver}" >> ./latest_changelog.md 19 + - echo "Using Alpine ${CI_COMMIT_TAG##v}" >> ./latest_changelog.md 20 20 - echo "" >> ./latest_changelog.md 21 21 - echo "### Versions of Installed Programs in ci-system" >> ./latest_changelog.md 22 22 - echo "" >> ./latest_changelog.md ··· 31 31 - echo "- $(python3 --version)" >> ./latest_changelog.md 32 32 33 33 make-changelog-js: 34 - image: codeberg.org/release-candidate/ci-js:${CI_COMMIT_TAG##ver} 34 + image: codeberg.org/release-candidate/ci-js:${CI_COMMIT_TAG##v} 35 35 commands: 36 36 - echo "" >> ./latest_changelog.md 37 37 - echo "### Versions of Installed Programs in ci-js" >> ./latest_changelog.md ··· 44 44 settings: 45 45 api_key: 46 46 from_secret: RELEASE_TOKEN 47 - title: Version ${CI_COMMIT_TAG##ver} 47 + title: Version ${CI_COMMIT_TAG##v} 48 48 note: ./latest_changelog.md 49 49 overwrite: true 50 50 log_level: debug