Skip to content

Commit 7be90c6

Browse files
committed
cleanup of working-directory leftovers
1 parent 932323f commit 7be90c6

1 file changed

Lines changed: 3 additions & 12 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
name: release
2-
run-name: Release ${{ inputs.working-directory }} by @${{ github.actor }}
2+
run-name: Release by @${{ github.actor }}
33
on:
44
# TODO: remove this trigger when done testing
55
pull_request:
66
branches:
77
- main
8-
# TODO: confirm this is useless, remove
9-
# workflow_call:
10-
# inputs:
11-
# working-directory:
12-
# required: true
13-
# type: string
14-
# description: "From which folder this pipeline executes"
158
workflow_dispatch:
169
inputs:
1710
dangerous-nonmaster-release:
@@ -62,7 +55,6 @@ jobs:
6255
- name: Check Version
6356
id: check-version
6457
shell: python
65-
working-directory: ${{ inputs.working-directory }}
6658
run: |
6759
import os
6860
import tomllib
@@ -142,7 +134,6 @@ jobs:
142134
# ASTRA_DB_API_ENDPOINT: ${{ secrets.ASTRA_DB_API_ENDPOINT }}
143135
# HEADER_EMBEDDING_API_KEY_OPENAI: ${{ secrets.HEADER_EMBEDDING_API_KEY_OPENAI }}
144136
# run: make test-integration
145-
# working-directory: ${{ inputs.working-directory }}
146137

147138
pre-release-unit-lowest-python:
148139
needs:
@@ -204,7 +195,7 @@ jobs:
204195
- uses: actions/download-artifact@v5
205196
with:
206197
name: dist
207-
path: ${{ inputs.working-directory }}/dist/
198+
path: dist/
208199

209200
# TODO: retarget prod PyPI (remove 'repository-url' and skip-existing)
210201
- name: Publish package distributions to PyPI - TEST FOR NOW
@@ -243,7 +234,7 @@ jobs:
243234
- uses: actions/download-artifact@v5
244235
with:
245236
name: dist
246-
path: ${{ inputs.working-directory }}/dist/
237+
path: dist/
247238

248239
- name: Create release
249240
uses: ncipollo/release-action@v1

0 commit comments

Comments
 (0)