Skip to content

Commit

Permalink
chore(ci): add semantic-release
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras committed Feb 19, 2024
1 parent 16dafd6 commit 04358ee
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 88 deletions.
88 changes: 0 additions & 88 deletions .github/workflows/publish.yaml

This file was deleted.

90 changes: 90 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: Release

on:
push:
branches:
- main

jobs:
semrel:
name: Semantic Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Semantic Release
uses: go-semantic-release/action@v1
id: semrel
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
allow-initial-development-versions: true

- run: pipx install poetry
if: steps.semrel.outputs.version != ''

- name: Adjust Versions
if: steps.semrel.outputs.version != ''
run: |
cd api && poetry version ${{ steps.semrel.outputs.version }} && cd -
cd ember && yarn version --no-commit-hooks --no-git-tag-version --new-version ${{ steps.semrel.outputs.version }}
- name: Release Commit
uses: EndBug/add-and-commit@v9
if: steps.semrel.outputs.version != ''
with:
message: "chore(release): ${{ steps.semrel.outputs.version }} [skip ci]"
default_author: github_actions
add: |
api/pyproject.toml
ember/package.json
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
if: steps.semrel.outputs.version != ''
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
if: steps.semrel.outputs.version != ''
uses: docker/setup-buildx-action@v3

- name: Build and Push API Docker Image
if: steps.semrel.outputs.version != ''
uses: docker/build-push-action@v5
with:
context: ./api/
push: true
tags: |
ghcr.io/${{ github.repository }}/api:${{ steps.semrel.outputs.version }}
ghcr.io/${{ github.repository }}/api:latest
- name: Build and Push Ember Docker Image
if: steps.semrel.outputs.version != ''
uses: docker/build-push-action@v5
with:
context: ./ember/
push: true
tags: |
ghcr.io/${{ github.repository }}/ember:${{ steps.semrel.outputs.version }}
ghcr.io/${{ github.repository }}/ember:latest
- name: Set up Helm
if: steps.semrel.outputs.version != ''
uses: azure/setup-helm@v3.5
with:
version: v3.12.0

- name: Package Chart
if: steps.semrel.outputs.version != ''
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm dependency build charts/outdated
helm package --version ${{ steps.semrel.outputs.version }} --app-version ${{ steps.semrel.outputs.version }} --destination=dist charts/outdated
- name: Push Chart
if: steps.semrel.outputs.version != ''
run: helm push dist/*.tgz oci://ghcr.io/${{ github.repository }}/helm

0 comments on commit 04358ee

Please sign in to comment.