Merge pull request #489 from adfinis/fix-admins-redirect-to-'own'-end… #5
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: Release | |
on: | |
push: | |
branches: [main] | |
jobs: | |
semrel: | |
permissions: | |
actions: none | |
checks: none | |
contents: write | |
deployments: none | |
issues: none | |
packages: none | |
pull-requests: none | |
repository-projects: none | |
security-events: none | |
statuses: none | |
id-token: none | |
name: Semantic Release | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.semrel.outputs.version }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Semantic Release | |
uses: go-semantic-release/action@v1 | |
id: semrel | |
with: | |
github-token: ${{ secrets.ADFINISBOT_PAT }} | |
allow-initial-development-versions: true | |
container: | |
name: Release Container | |
runs-on: ubuntu-latest | |
if: needs.semrel.outputs.version != '' | |
needs: semrel | |
permissions: | |
actions: none | |
checks: none | |
contents: none | |
deployments: none | |
issues: none | |
packages: write | |
pull-requests: none | |
repository-projects: none | |
security-events: none | |
statuses: none | |
id-token: none | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Adjust Version | |
run: | | |
sed 's/"0.0.0"/"${{ needs.semrel.outputs.version }}"/g' -i ./frontend/package.json | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ghcr.io/${{ github.repository }}/frontend | |
flavor: | | |
latest=auto | |
tags: | | |
type=semver,pattern={{version}},value=${{ needs.semrel.outputs.version }} | |
type=semver,pattern={{major}}.{{minor}},value=${{ needs.semrel.outputs.version }} | |
type=semver,pattern={{major}},value=${{ needs.semrel.outputs.version }} | |
labels: | | |
org.opencontainers.image.title=frontend | |
org.opencontainers.image.description=${{ github.event.repository.description }} | |
org.opencontainers.image.url=${{ github.event.repository.html_url }} | |
org.opencontainers.image.source=${{ github.event.repository.clone_url }} | |
org.opencontainers.image.revision=${{ github.sha }} | |
org.opencontainers.image.licenses=${{ github.event.repository.license.spdx_id }} | |
- name: Build and Push Docker Image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./frontend/ | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: | | |
${{ steps.meta.outputs.labels }} | |
build-args: | | |
AUTH_ROLE_ADMIN=${{ secrets.AUTH_ROLE_ADMIN }} | |
AUTH_ROLE_EMPLOYEE=${{ secrets.AUTH_ROLE_EMPLOYEE }} | |
AUTH_ROLE_CUSTOMER=${{ secrets.AUTH_ROLE_CUSTOMER }} | |
TIMED_STAGING_HOST=${{ secrets.TIMED_STAGING_HOST }} | |
TIMED_PROD_HOST=${{ secrets.TIMED_PROD_HOST }} |