Skip to content

Commit 2a9e087

Browse files
committed
Fixes for GitHub actions registry login and pip download.
1 parent 00b3b79 commit 2a9e087

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v1
17+
- uses: actions/setup-python@v1
18+
with:
19+
python-version: '3.8'
1720
- name: Install Dependencies
1821
run: |
1922
python -m pip install --upgrade pip
@@ -27,6 +30,6 @@ jobs:
2730
steps:
2831
- uses: actions/checkout@v1
2932
- name: Log into Registry
30-
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
3134
- name: Push to GitHub Package Registry
3235
run: make push VERSION=0.0.3

0 commit comments

Comments
 (0)