Docker and Semantic Release #4256
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker and Semantic Release | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '28 * * * *' | |
workflow_dispatch: | |
jobs: | |
semantic-release: | |
runs-on: ubuntu-latest | |
concurrency: release | |
if: github.ref == 'refs/heads/master' | |
permissions: | |
contents: write | |
outputs: | |
version: ${{ steps.get-version.outputs.version }} | |
diff_version: ${{ steps.get-version.outputs.diff_version }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get current Version | |
id: get-current-version | |
uses: ./.github/actions/get_current_version | |
- name: Python Semantic Release | |
id: release | |
uses: tumaysem/python-semantic-release@master | |
with: | |
additional_options: --github | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/checkout@v3 | |
- name: Calculate version | |
id: get-version | |
uses: ./.github/actions/calculate_release_versions | |
with: | |
published_version: ${{ steps.release.outputs.published_version }} | |
current_version: ${{ steps.get-current-version.outputs.version }} | |
- name: Print version | |
run: | | |
echo "Version: ${{ steps.get-version.outputs.version }}" | |
echo "Diff version: ${{ steps.get-version.outputs.diff_version }}" | |
get-latest-versions: | |
needs: semantic-release | |
uses: ./.github/workflows/fetch_latest_versions.yml | |
with: | |
autoagora-indexer-service-version: ${{ needs.semantic-release.outputs.diff_version }} | |
docker-release: | |
needs: [semantic-release, get-latest-versions] | |
if: ${{ needs.get-latest-versions.outputs.versions != '[]' }} | |
permissions: | |
packages: write | |
strategy: | |
matrix: | |
indexer-version: ${{ fromJson(needs.get-latest-versions.outputs.versions) }} | |
uses: ./.github/workflows/docker_build_release.yml | |
with: | |
indexer-version: ${{ matrix.indexer-version }} | |
version: ${{ needs.semantic-release.outputs.version }} | |
org-name: ${{ needs.get-latest-versions.outputs.org-name }} | |
secrets: | |
token: ${{ secrets.GITHUB_TOKEN }} |