Skip to content

Commit

Permalink
Merge pull request #121 from linkorb/fix-release-config-file-format-9358
Browse files Browse the repository at this point in the history
fix(release): use commonjs format for config #9358
  • Loading branch information
mhitza authored Jan 21, 2025
2 parents f3fc0f5 + 9f42525 commit 6eae787
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tasks/other-dev-generated-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
block:
- name: generate semantic-release config file
ansible.builtin.template:
src: ./templates/release.config.mjs.j2
dest: "{{ repo_path }}/release.config.mjs"
src: ./templates/.releaserc.cjs.j2
dest: "{{ repo_path }}/.releaserc.cjs"

- name: find workflow extensions
ansible.builtin.command: "./library/list_extension_workflows.py '{{ repo_path }}'"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* @type {import('semantic-release').GlobalConfig}
*/
export default {
module.exports = {
branches: ["{{ repo.github.default_branch }}"],
debug: "True",
plugins: [
Expand Down

0 comments on commit 6eae787

Please sign in to comment.