Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/famicom-dumper-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build-test.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 6ee47a6..7ab1f15 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -75,10 +75,16 @@ jobs:
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
+ - name: Move files to the root
+ run: find -mindepth 2 -exec mv {} . \;
- name: Display structure of downloaded files
run: ls -R
- name: Display structure of downloaded files
run: ls -R > index.html
+ - name: Upload artifact
+ uses: actions/upload-pages-artifact@v1
+ with:
+ path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1