Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Paolo-Beci committed Jun 13, 2024
1 parent 94514f7 commit e2ad39d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ jobs:
ASSET_MIME: application/zip
steps:
- uses: actions/checkout@v1
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
Expand Down
18 changes: 18 additions & 0 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

# Check if a version number argument is provided
if [ $# -ne 1 ]; then
echo "Usage: $0 <version_number>"
exit 1
fi

VERSION=$1

# Commands to add files, commit, tag, and push
git add .
git commit -m "v$VERSION"
git tag -a "v$VERSION" -m "Version $VERSION"
git push origin master --tags


# RUN with the command ./deploy.sh <version_number>

0 comments on commit e2ad39d

Please sign in to comment.