Skip to content

Commit

Permalink
copy as standard step
Browse files Browse the repository at this point in the history
  • Loading branch information
michield committed Dec 30, 2023
1 parent 8b31284 commit d2ac06d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
php_extensions: xml
version: 2

- name: Report Versions
- name: Report Versions and show ENV vars
run: |
google-chrome --version
lsb_release -a
Expand All @@ -57,6 +57,7 @@ jobs:
vendor/bin/behat -V
mysql --version
mysqladmin --version
export
- name: Create Database
run: |
Expand Down Expand Up @@ -98,7 +99,6 @@ jobs:
run: |
cd $GITHUB_WORKSPACE/tests
../vendor/bin/behat -p chrome -f progress --tags="~@initialise && ~@wip"
cp /tmp/*.png output/screenshots
- name: Reset Database
run: |
Expand All @@ -123,6 +123,12 @@ jobs:
cd $GITHUB_WORKSPACE/tests
../vendor/bin/behat -p chrome --tags="~@initialise && ~@wip"
- name: copy screenshots
if: always()
run: |
cd $GITHUB_WORKSPACE/tests
cp /tmp/*.png output/screenshots
- name: Upload the screenshots
if: always()
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit d2ac06d

Please sign in to comment.