mirror of https://github.com/PiyushXCoder/lupt.git
Merge pull request #2 from PiyushXCoder/PiyushXCoder-workflow
Create docker-image.yml
This commit is contained in:
commit
ac9447b166
|
|
@ -0,0 +1,28 @@
|
||||||
|
name: Docker Image CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "main" ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
push-store-image:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
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 Inventory Image'
|
||||||
|
run: |
|
||||||
|
docker build . --tag ghcr.io/${{GITHUB_REPOSITORY}}:main
|
||||||
|
docker push ghcr.io/${{GITHUB_REPOSITORY}}:main
|
||||||
|
|
||||||
Loading…
Reference in New Issue