Skip to content

Commit

Permalink
Update GitHub Actions workflow name and command
Browse files Browse the repository at this point in the history
The changes in this commit involve updating the name of the GitHub Actions workflow from "Build and Deploy" to "Test Build and Deploy". Additionally, the command for copying artifacts to the test environment has been changed for a more accurate path.
  • Loading branch information
law909 committed Dec 20, 2023
1 parent 44831c7 commit 45d9a88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Deploy
name: Test Build and Deploy

on:
push:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

- name: Push to Test Environment
run: |
cp -r artifacts/artifacts${{ github.run_number }}/* testenv/
cp -r artifacts${{ github.run_number }}/* testenv/
cd testenv
find . -name '*.html' -exec sed -i -e "s,https://sourcewp.digitalpublicgoods.net,https://dpgalliance.github.io/,g" {} \;
touch .nojekyll
Expand Down

0 comments on commit 45d9a88

Please sign in to comment.