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:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-12-13 22:22:01 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-12-13 22:22:01 +0300
commit786def96717d25986ec2ef4c6fbf278535e13358 (patch)
tree587abcba8d9df96cebebc78dd2896b616185f639
parent815389897949208df8cdc0771e5879946d2ba55d (diff)
GitHub actions test
-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