Skip to content

Commit

Permalink
v32.2.0
Browse files Browse the repository at this point in the history
new settings: keypads while dragging (#208)
reworked "Settings" tab on three columns
  • Loading branch information
sh4rkman committed Oct 14, 2024
1 parent e7cc112 commit f7dc61f
Show file tree
Hide file tree
Showing 15 changed files with 772 additions and 511 deletions.
28 changes: 21 additions & 7 deletions .github/workflows/deploy_preprod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ jobs:
name: ssh/pull/build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

# Extract the version from package.json
- name: Get version from package.json
id: get_version
run: |
VERSION=$(jq -r '.version' package.json)
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Pull code & Build
uses: appleboy/ssh-action@v1.0.3
with:
Expand All @@ -16,17 +26,21 @@ jobs:
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
eval `ssh-agent -s`
ssh-add ~/.ssh/${{ secrets.SSH_PUBLIC_KEY_NAME }}
cd ${{ secrets.DEV_DIST }}
git pull origin dev
npm ci
npm run build
eval `ssh-agent -s`
ssh-add ~/.ssh/${{ secrets.SSH_PUBLIC_KEY_NAME }}
cd ${{ secrets.DEV_DIST }}
git pull origin dev
npm ci
npm run build
- name: Discord notification
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
DISCORD_USERNAME: "Github Monitoring"
DISCORD_AVATAR: "https://i.imgur.com/lPRYnJx.png"
uses: Ilshidur/action-discord@master
with:
args: 'The project {{ EVENT_PAYLOAD.repository.full_name }} has been deployed successfully on https://beta.squadcalc.app'
args: |
The project **${{ github.event.repository.full_name }}** has been deployed successfully on https://beta.squadcalc.app
**Version**: ${{ env.VERSION }}
**Commit**: ${{ github.event.head_commit.message }}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# <img src="https://img.shields.io/badge/-minor%20release-cd6f68?style=for-the-badge"> **32.2.0** *(2024-10-14)*

<img src="https://img.shields.io/badge/-new-green"> New Options: "Show keypads while dragging". Enable to display current keypad while dragging weapon/target markers

<img src="https://img.shields.io/badge/-%20improv%20-orange"> Reworked Setting tab on three columns : Map, Weapon and Target settings



</br></br><!-- CHANGELOG SPLIT MARKER -->

# <img src="https://img.shields.io/badge/-minor%20release-cd6f68?style=for-the-badge"> **32.1.0** *(2024-10-13)*

<img src="https://img.shields.io/badge/-new-green"> Added Narva (Flooded) to the map list
Expand Down
Loading

0 comments on commit f7dc61f

Please sign in to comment.