Skip to content

Commit

Permalink
Fix the Catalog CD (#3)
Browse files Browse the repository at this point in the history
* modify the order of the actions in the *catalog-cd* workflow - Install Poetry comes first than Set up Python

* fix typo in the *Install Apptainer* action in the *catalog-cd* workflow
  • Loading branch information
matheushent authored Oct 29, 2024
1 parent 6e23e07 commit 1015bd2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/catalog-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
with:
node-version: '22.8.0'

- name: Set up Python
uses: actions/setup-python@v4
with:
cache: 'poetry'

- name: Install Poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.8.0

- name: Set up Python
uses: actions/setup-python@v4
with:
cache: 'poetry'

- name: Install CDK
run: |
npm install -g [email protected]
Expand All @@ -54,7 +54,7 @@ jobs:
run: |
sudo apt install -y software-properties-common
sudo add-apt-repository -y ppa:apptainer/ppa
sudo apt-update
sudo apt update
sudo apt install -y apptainer
- name: Configure settings
Expand Down

0 comments on commit 1015bd2

Please sign in to comment.