Skip to content

Commit

Permalink
[ci] Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed May 29, 2023
1 parent 75933e1 commit 84636f3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-python@v1
- uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install Python Dependencies
run: pip install --upgrade meson==0.60.2 ninja
Expand Down Expand Up @@ -54,7 +56,7 @@ jobs:

- name: Upload
if: github.ref_type == 'tag'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: bin-${{ runner.os }}
path: ots-*.zip
Expand All @@ -66,7 +68,7 @@ jobs:

- name: Upload Dist Tarball
if: github.ref_type == 'tag' && matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: dist
path: build/meson-dist/ots-*.tar.xz
Expand All @@ -78,10 +80,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Download artifacts from build jobs
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: dist

Expand Down

0 comments on commit 84636f3

Please sign in to comment.