Skip to content

Commit

Permalink
correct artifact extension and python version in github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Panizem authored and Panizem committed Apr 21, 2023
1 parent c3214d8 commit 8ec6a53
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@ on:
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
Expand Down Expand Up @@ -48,6 +51,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./data/gazetteer.zip
asset_path: ./data/gazetteer.csv
asset_name: gazetteer.csv
asset_content_type: text/csv

0 comments on commit 8ec6a53

Please sign in to comment.