8000 upgrade github actions from v3 to v4 by fffx · Pull Request #1 · fffx/book · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

upgrade github actions from v3 to v4 #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build image
run: docker build -t crypto101 docker/
- name: Generate documents
Expand All @@ -21,32 +21,32 @@ jobs:
set -e
docker run --rm -it -v ${{ github.workspace }}:/repo crypto101 ./build_release ./_release/
- name: Upload document
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crypto101-en.epub
path: _release/crypto101-en.epub
- name: Upload document
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crypto101-en.pdf
path: _release/crypto101-en.pdf
- name: Upload document
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crypto101-en_html.tar.gz
path: _release/crypto101-en_html.tar.gz
- name: Upload document
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crypto101-fr.epub
path: _release/crypto101-fr.epub
- name: Upload document
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crypto101-fr.pdf
path: _release/crypto101-fr.pdf
- name: Upload document
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crypto101-fr_html.tar.gz
path: _release/crypto101-fr_html.tar.gz
Expand All @@ -58,32 +58,32 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- name: Download document
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: crypto101-en.epub
path: /tmp
- name: Download document
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: crypto101-en.pdf
path: /tmp
- name: Download document
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: crypto101-en_html.tar.gz
path: /tmp
- name: Download document
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: crypto101-fr.epub
path: /tmp
- name: Download document
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: crypto101-fr.pdf
path: /tmp
- name: Download document
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: crypto101-fr_html.tar.gz
path: /tmp
Expand Down
0