Skip to content

Commit

Permalink
Update GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 committed Jan 30, 2024
1 parent 6f157c7 commit 7505b70
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.8'
architecture: 'x64'
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Run PyInstaller
run: |
python -m PyInstaller tasmotizer.spec
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Windows_tasmotizer
path: dist/tasmotizer-1.2.1.exe
Expand All @@ -30,9 +30,9 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.8'
architecture: 'x86'
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Run PyInstaller
run: |
python -m PyInstaller tasmotizer32.spec
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Windows_tasmotizer32
path: dist/tasmotizer-1.2.1-x86.exe
Expand All @@ -51,9 +51,9 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install requirements
Expand All @@ -68,7 +68,7 @@ jobs:
run: gzip dist/tasmotizer-1.2.1
- name: 'show gzip'
run: ls dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Ubuntu
path: dist/tasmotizer-1.2.1.gz
Expand All @@ -78,9 +78,9 @@ jobs:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install requirements
Expand All @@ -97,7 +97,7 @@ jobs:
- name: 'Tar files'
run: tar -cvf dist.tar dist/*
- name: 'Upload Artifact'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: macOS
path: dist.tar

0 comments on commit 7505b70

Please sign in to comment.