Skip to content

Commit

Permalink
github: Bump versions of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
avdgrinten committed Oct 28, 2024
1 parent be6c025 commit 582169e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ on: [push, pull_request]
jobs:
build:
name: Build source package
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Building using setuptools
run: |
./setup.py sdist
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: packages
path: dist/xbstrap-*.tar.gz

deploy:
name: Publish release
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/v')"
needs: build
steps:
- name: Fetch artifact
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: packages
path: artifact
Expand Down

0 comments on commit 582169e

Please sign in to comment.