Skip to content

Commit

Permalink
update ci labels
Browse files Browse the repository at this point in the history
  • Loading branch information
gcerretani committed Oct 14, 2024
1 parent b9e54ac commit a2c3a35
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:

strategy:
matrix:
runs-on: ['ubuntu-240.04', 'macos-11', 'windows-2019']
runs-on: ['ubuntu-20.04', 'macos-12', 'windows-2019']
runs-on: ${{ matrix.runs-on }}

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.7

Expand All @@ -35,14 +35,14 @@ jobs:
- name: Upload artifact for Windows
if: runner.os == 'Windows'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: antenati_gui_windows.exe
path: dist/antenati_gui.exe

- name: Upload artifact for macOS and Ubuntu
if: runner.os != 'Windows'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: antenati_gui_${{ matrix.runs-on }}
path: dist/antenati_gui
6 changes: 3 additions & 3 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:

strategy:
matrix:
runs-on: ['ubuntu-20.04', 'macos-11', 'windows-2019']
runs-on: ['ubuntu-20.04', 'macos-12', 'windows-2019']

runs-on: ${{ matrix.runs-on }}

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python 3.7
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.7

Expand Down

0 comments on commit a2c3a35

Please sign in to comment.