Skip to content

Commit

Permalink
update GitHub pages actions
Browse files Browse the repository at this point in the history
  • Loading branch information
quillcraftsman committed Jan 31, 2025
1 parent b1b16ec commit e5c208e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions cactus/skeleton/.github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
Expand All @@ -41,17 +41,17 @@ jobs:
run: |
pip install lava-cactus
sudo apt-get install gettext
# Build twice. Down't know why :) One time translate don't create translate correctly.
# Build twice. Don't know why :) One time translate don't create translate correctly.
- name: Build Project with cactus
run: |
cactus update_config -p root_url:${{ github.event.repository.name }}
cactus build
cactus build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './.build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_python_lib():
return get_path(name)

PACKAGE_NAME = 'lava-cactus'
VERSION = "2.0.1"
VERSION = "3.0.0"
SKELETON_FOLDERS = [
'pages',
'plugins',
Expand Down Expand Up @@ -174,7 +174,7 @@ def read(filename):
tests_require=open(os.path.join(root_dir, "test_requirements.txt")).readlines(),
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
Expand Down

0 comments on commit e5c208e

Please sign in to comment.