Skip to content

Commit

Permalink
update actions, tag a new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgstew committed Nov 18, 2022
1 parent 5045c89 commit 77c319d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tag_and_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
name: Tag and Release
runs-on: ubuntu-latest
steps:
- name: "Checkout source code"
uses: "actions/checkout@v1"
- name: Checkout source code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Read VERSION file
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
python-version: ["3.6", "3"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install build tools
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
run: python -m bescli ls logout clear error_count version exit
- name: Run Tests - Pip
run: python tests/tests.py --test_pip
- name: Test pyinstaller
- name: Test pyinstaller build
run: pyinstaller --clean --collect-all besapi --onefile ./src/bescli/bescli.py
- name: Test bescli binary
run: ./dist/bescli ls logout clear error_count version exit
2 changes: 1 addition & 1 deletion src/besapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

from . import besapi

__version__ = "3.0.2"
__version__ = "3.1.1"

0 comments on commit 77c319d

Please sign in to comment.