[f] keyboard atribute in text_edit #31
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: Build and Push Docker Image | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Determine the Docker tag | |
id: get_tag | |
run: | | |
if [ "${{ github.ref }}" == "refs/heads/main" ]; then | |
echo "::set-output name=tag::ghcr.io/${{ github.repository }}:latest" | |
elif [ "${{ github.ref }}" == "refs/heads/dev" ]; then | |
echo "::set-output name=tag::ghcr.io/${{ github.repository }}:dev" | |
fi | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./dockerfile | |
push: true | |
tags: ${{ steps.get_tag.outputs.tag }} | |