Skip to content

Commit

Permalink
add initial pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Wenzel authored and Felix Wenzel committed Jan 8, 2024
1 parent 392a686 commit c71b740
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/push-docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deploy Images to GHCR

on:
push:
tags:
- "v*.*.*"

jobs:
push-image:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "./azure-clientid-syncer"
steps:
- name: "Checkout GitHub Action"
uses: actions/checkout@main

# - name: "Login to GitHub Container Registry"
# uses: docker/login-action@v1
# with:
# registry: ghcr.io
# username: ${{github.actor}}
# password: ${{secrets.GITHUB_TOKEN}}

- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ghcr.io/shiftavenue/azure-clientid-syncer:latest

0 comments on commit c71b740

Please sign in to comment.