We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00b3b79 commit 2a9e087Copy full SHA for 2a9e087
.github/workflows/main.yml
@@ -14,6 +14,9 @@ jobs:
14
runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v1
17
+ - uses: actions/setup-python@v1
18
+ with:
19
+ python-version: '3.8'
20
- name: Install Dependencies
21
run: |
22
python -m pip install --upgrade pip
@@ -27,6 +30,6 @@ jobs:
27
30
28
31
29
32
- name: Log into Registry
- run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
33
+ run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
34
- name: Push to GitHub Package Registry
35
run: make push VERSION=0.0.3
0 commit comments