Skip to content

Commit

Permalink
update action
Browse files Browse the repository at this point in the history
  • Loading branch information
danbao committed Jul 19, 2024
1 parent fe2ab05 commit d73747b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-jdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
echo "${NEW_ENTRY}" > readme_updates_${{ matrix.jdk_version }}.txt
- name: Upload README Update
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: readme-updates-${{ matrix.jdk_version }}
path: readme_updates_${{ matrix.jdk_version }}.txt
Expand All @@ -114,30 +114,30 @@ jobs:
- uses: actions/checkout@v4

- name: Download README Updates
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: readme-updates-8
path: ./readme-updates
- name: Download README Updates
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: readme-updates-11
path: ./readme-updates
- name: Download README Updates
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: readme-updates-17
path: ./readme-updates
- name: Download README Updates
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: readme-updates-21
path: ./readme-updates

- name: Initialize README
run: |
echo "| JDK Version | Version | Docker Hub | GitHub Package |\n|-------------|------------|------------|----------------|" > README.md
echo "| JDK Version | Version | Docker Hub | GitHub Package |" > README.md
echo "|-------------|------------|------------|----------------|" >> README.md
- name: Update README
run: |
for file in ./readme-updates/*; do
Expand Down

0 comments on commit d73747b

Please sign in to comment.