Skip to content

Commit 320a283

Browse files
authored
Update python-publish.yml
1 parent cd58277 commit 320a283

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/python-publish.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
# This workflow will upload a Python Package using Twine when a release is created
2-
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
3-
4-
# This workflow uses actions that are not certified by GitHub.
5-
# They are provided by a third-party and are governed by
6-
# separate terms of service, privacy policy, and support
7-
# documentation.
8-
91
name: Upload Python Package
102

113
on:
@@ -21,11 +13,14 @@ jobs:
2113
runs-on: ubuntu-latest
2214

2315
steps:
24-
- uses: actions/checkout@v3
16+
- name: Checkout code
17+
uses: actions/checkout@v3
2518
- name: Set up Python
2619
uses: actions/setup-python@v3
2720
with:
2821
python-version: '3.10'
22+
- name: Navigate to root directory
23+
run: cd $GITHUB_WORKSPACE
2924
- name: Install dependencies
3025
run: |
3126
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)