Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasindu Dissanayake authored Jul 14, 2024
1 parent 9ee3a99 commit e466dc3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build the base image
run: docker build -t metacall/distributable_linux -f Dockerfile .
- name: Install the additional channels and pull
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Build tarball
run: docker run --rm -v $PWD/out:/metacall/pack --privileged metacall/distributable_linux /metacall/scripts/build.sh
- name: Upload tarball artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: built-tarball
path: out/
Expand All @@ -48,8 +48,8 @@ jobs:
needs: prep
steps:
- name: Check out the repo
uses: actions/checkout@v2
- uses: actions/download-artifact@v3
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: built-tarball
path: out/
Expand All @@ -74,10 +74,10 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0 # To fetch all tags
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: built-tarball
path: out/
Expand Down

0 comments on commit e466dc3

Please sign in to comment.