File size: 547 Bytes
72c7ee5
 
c1215a5
72c7ee5
 
 
 
 
 
 
 
 
 
 
 
 
f7c8bb8
72c7ee5
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Publish Docker image
on:
    workflow_dispatch
jobs:
  push_to_registry:
    name: Push Docker image to GitHub Packages
    runs-on: ubuntu-latest
    steps:
      - name: Check out the repo
        uses: actions/checkout@v2
      - name: Push to GitHub Packages
        uses: docker/build-push-action@v1
        with:
          username: ${{ github.actor }}
          password: ${{ secrets.GITHUB_TOKEN }}
          registry: docker.pkg.github.com
          repository: robinhad/voice-recognition-ua/voice-rec
          tag_with_ref: true