Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ jobs:
branch: main
unprotect_reviews: true

- name: Publish Collection on Ansible Galaxy
uses: artis3n/ansible_galaxy_collection@v2
with:
api_key: '${{ secrets.GALAXY_API_KEY }}'
build: false
publish: true

- name: Push changes to repository
run: git push origin && git push --tags

Expand All @@ -59,13 +66,6 @@ jobs:
body: ${{ steps.release-changelog.outputs.content }}
token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }}

- name: Publish Collection on Ansible Galaxy
uses: artis3n/ansible_galaxy_collection@v2
with:
api_key: '${{ secrets.GALAXY_API_KEY }}'
build: false
publish: true

clean_changelog:
if: github.event.pull_request.merged == true && needs.changelog.outputs.release-type == 'no-release'
needs: [ changelog ]
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All changes that impact users of this module are documented in this file, in the [Common Changelog](https://common-changelog.org) format with some additional specifications defined in the CONTRIBUTING file. This codebase adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased [no-release]

_Modifications made in this changeset do not add, remove or alter any behavior, dependency, API or functionality of the software. They only change non-functional parts of the repository, such as the README file or CI workflows._

## 3.0.0 - 2025-12-19

_Full changeset and discussions: [#58](https://github.com/OpenTermsArchive/deployment/pull/58)._
Expand Down
8 changes: 4 additions & 4 deletions playbooks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
block:
- name: Load contribution-tool config
ansible.builtin.include_role:
name: ota/contribution-tool
name: ota/contribution_tool
public: true
apply:
tags: [always]
Expand Down Expand Up @@ -120,7 +120,7 @@
block:
- name: Load federation-api config
ansible.builtin.include_role:
name: ota/federation-api
name: ota/federation_api
public: true
apply:
tags: [always]
Expand Down Expand Up @@ -208,7 +208,7 @@
block:
- name: Setup contribution-tool
ansible.builtin.include_role:
name: ota/contribution-tool
name: ota/contribution_tool
public: true

# Federation-api: application deployment
Expand All @@ -217,7 +217,7 @@
block:
- name: Setup federation-api
ansible.builtin.include_role:
name: ota/federation-api
name: ota/federation_api
public: true

# Process management & web server (common)
Expand Down
File renamed without changes.