mirror of
https://github.com/gabrielkheisa/instagram-downloader.git
synced 2024-12-22 10:03:20 +07:00
Create docker-image.yml
This commit is contained in:
parent
107c837fe8
commit
e3d935f6da
23
.github/workflows/docker-image.yml
vendored
Normal file
23
.github/workflows/docker-image.yml
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
name: Build and Publish Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main # Trigger the workflow on pushes to the main branch
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Login to GitHub Packages Docker registry
|
||||
run: echo "${{ secrets.GH_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.repository_owner }} --password-stdin
|
||||
|
||||
- name: Build Docker image
|
||||
run: docker build -t docker.pkg.github.com/${{ github.repository }}/${{ github.repository }}:latest .
|
||||
|
||||
- name: Push Docker image
|
||||
run: docker push docker.pkg.github.com/${{ github.repository }}/${{ github.repository }}:latest
|
Loading…
Reference in New Issue
Block a user