Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docker build for release #2830

Merged
merged 3 commits into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,17 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
# The following steps aren't needed, but if you want 100% guarantee the tagged/release build will work you can add them
# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: "3.x"
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip poetry
# python -m poetry config virtualenvs.create false
# python -m poetry self add "poetry-dynamic-versioning[plugin]"
# - run: echo "TAG=$(poetry version -s)" | tee -a $GITHUB_ENV
- uses: docker/login-action@v1
if: github.repository_owner == 'locustio'
with:
Expand Down Expand Up @@ -138,6 +149,10 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
Expand Down
Loading