Add comments for global selection and scrollbar styles in CSS #90
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
################################# | |
# @author K10s Open Source Team # | |
# @since 01/01/2025 # | |
################################# | |
name: Build and Push Docker Image to GHCR | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
username-to-lowercase: | |
runs-on: ubuntu-latest | |
outputs: | |
LOWERCASE_USERNAME: ${{ steps.set-lowercase.outputs.LOWERCASE_USERNAME }} | |
steps: | |
- name: Set username to lowercase | |
id: set-lowercase | |
run: echo "::set-output name=LOWERCASE_USERNAME::$(echo ${{ github.actor }} | tr '[:upper:]' '[:lower:]')" | |
build-push-backend: | |
needs: [username-to-lowercase] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Login to GHCR | |
run: | | |
echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u ${{ needs.username-to-lowercase.outputs.LOWERCASE_USERNAME }} --password-stdin | |
- name: Build/Push Backend Docker Image | |
run: | | |
docker build --push -t ghcr.io/${{ needs.username-to-lowercase.outputs.LOWERCASE_USERNAME }}/k10s-backend:latest ./App/Backend | |
build-push-frontend: | |
needs: [username-to-lowercase] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Login to GHCR | |
run: | | |
echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u ${{ needs.username-to-lowercase.outputs.LOWERCASE_USERNAME }} --password-stdin | |
- name: Build/Push Frontend Docker Image | |
run: | | |
docker build --push -t ghcr.io/${{ needs.username-to-lowercase.outputs.LOWERCASE_USERNAME }}/k10s-frontend:latest ./App/Frontend |