Skip to content

Commit

Permalink
Add workflow for cli container
Browse files Browse the repository at this point in the history
  • Loading branch information
Oscariremma committed Mar 25, 2024
1 parent 1522430 commit 026b145
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build cli tool

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
name: Build docker container

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
if: ${{ github.ref == 'refs/heads/master' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker image (and push on master)
uses: docker/[email protected]
with:
push: ${{ github.ref == 'refs/heads/master' }}
tags: ghcr.io/cthit/goldapps-cli:latest
file: ./Dockerfile

0 comments on commit 026b145

Please sign in to comment.