mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 01:35:56 +01:00
IPFS publish needs artifact
This commit is contained in:
parent
f666e2099a
commit
a1a83d58d7
1 changed files with 5 additions and 0 deletions
5
.github/workflows/publish.yml
vendored
5
.github/workflows/publish.yml
vendored
|
@ -49,6 +49,7 @@ jobs:
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-pages-artifact@v1
|
uses: actions/upload-pages-artifact@v1
|
||||||
with:
|
with:
|
||||||
|
name: site
|
||||||
path: ./public
|
path: ./public
|
||||||
|
|
||||||
# Deployment job
|
# Deployment job
|
||||||
|
@ -67,6 +68,10 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
steps:
|
steps:
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: site
|
||||||
|
path: ./public
|
||||||
- name: Publish to IPFS
|
- name: Publish to IPFS
|
||||||
id: Publish
|
id: Publish
|
||||||
uses: aquiladev/ipfs-action@master
|
uses: aquiladev/ipfs-action@master
|
||||||
|
|
Loading…
Reference in a new issue