Compare commits

..

2 Commits

Author SHA1 Message Date
f0a6b16a0c v4.2.2
=====================================================================

--- Bug Fixes ----------------------------

- Ensure CircleCI automatic publishes actually trigger on expected tags
2024-04-14 02:04:44 -06:00
74fe48cc4a v4.2.1
=====================================================================

--- New Features -------------------------

- Automatic test-stable rolling release to AUR
2024-04-14 01:59:01 -06:00

View File

@ -251,6 +251,7 @@ workflows:
jobs: jobs:
- require-full-semver: - require-full-semver:
filters: filters:
&only-run-on-full-semver-tag-filters
tags: tags:
only: /^v\d+\.\d+\.\d+.*$/ only: /^v\d+\.\d+\.\d+.*$/
branches: branches:
@ -258,8 +259,18 @@ workflows:
- aur-test: - aur-test:
&only-publish-for-full-semver &only-publish-for-full-semver
requires: [require-full-semver] filters: *only-run-on-full-semver-tag-filters
requires:
- require-full-semver
- aur-publish: - aur-publish:
#
# there's a crazy-low-chance race-condition between this job and the GH Action '../.github/workflows/automatic-release.yaml'
# - automatic-release creates the release artifact, but takes no more than 15-30 seconds (current avg:16s max:26s)
# - this publish step requires the release artifact, but waits for all language-repository publishes to complete first (a few minutes at least)
#
# if something goes wrong, this step can be safely rerun after fixing the release artifact :)
#
filters: *only-run-on-full-semver-tag-filters
context: [aur-yage] context: [aur-yage]
requires: requires:
- aur-test - aur-test
@ -268,10 +279,12 @@ workflows:
- python-test: *only-publish-for-full-semver - python-test: *only-publish-for-full-semver
- python-publish: - python-publish:
filters: *only-run-on-full-semver-tag-filters
requires: requires:
- python-test - python-test
- nodejs-test: *only-publish-for-full-semver - nodejs-test: *only-publish-for-full-semver
- nodejs-publish: - nodejs-publish:
filters: *only-run-on-full-semver-tag-filters
requires: requires:
- nodejs-test - nodejs-test