Skip to content

Commit 01a3d2e

Browse files
authored
Merge pull request #4 from EmilienM/action
Test 0.1 action
2 parents 296168d + 6bfb0df commit 01a3d2e

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- uses: actions/checkout@v2
99
- id: devstack-action
10-
uses: actions/devstack-action@v1
10+
uses: EmilienM/devstack-action@v1
1111
- name: Upload logs artifacts on failure
1212
if: failure()
1313
uses: actions/upload-artifact@v2

action.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ runs:
1111
using: "composite"
1212
steps:
1313
- name: Install python pip
14-
run: |
15-
python -m pip install --upgrade pip
14+
run: python -m pip install --upgrade pip
15+
shell: bash
1616
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md#mysql
1717
- name: Start MySQL
18-
run: |
19-
sudo systemctl start mysql.service
18+
run: sudo systemctl start mysql.service
19+
shell: bash
2020
- name: Checkout Devstack
2121
uses: actions/checkout@v2
2222
with:
@@ -35,6 +35,8 @@ runs:
3535
LOGFILE=${{ inputs.log_dir }}/devstack.log
3636
EOF
3737
working-directory: ./devstack
38+
shell: bash
3839
- name: Run devstack
3940
run: ./stack.sh
4041
working-directory: ./devstack
42+
shell: bash

0 commit comments

Comments
 (0)