Skip to content

Commit

Permalink
spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
CindyvdVries committed Jun 14, 2024
1 parent 5d3b088 commit d9aedec
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup environment
uses: ./.github/workflows/setup_environment.yml
uses: ./.github/workflows/setup_environment.yml
- name: bump version and update template_input.yaml
run: |
PROJECT_VERSION=$(poetry version --short)
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/setup_environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Setup environment

on: [workflow_call]

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
with:
token: ${{ secrets.VERSION_DECOIMPACT }}
fetch-depth: 0
- name: install python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.4.2

0 comments on commit d9aedec

Please sign in to comment.