Added Party Characteristics Tab and Visualizations to Dashboard #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: APP CI/CD | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'trails-viz-app/**' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'trails-viz-app/**' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '12' | |
- name: Install dependencies | |
run: | | |
cd trails-viz-app | |
npm install | |
- name: Run lint and build project | |
run: | | |
set -e | |
cd trails-viz-app | |
npm run lint | |
npm run build | |
- name: Upload build artifact # save the dist folder as an artifact | |
if: github.event_name == 'push' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: trails-viz-app-dist | |
path: trails-viz-app/dist | |
deploy: | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' # only deploy on push event | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Download build artifact # download the dist folder from build | |
uses: actions/download-artifact@v4 | |
with: | |
name: trails-viz-app-dist | |
path: trails-viz-app/dist | |
- name: Setup git user identity | |
run: | | |
git config --global user.name "outdoorrd-bot" | |
git config --global user.email "[email protected]" | |
- name: Update app version | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
set -e | |
commit_message=$(git log -1 --pretty=%B) # Get commit message | |
echo "Updating version..." | |
if [[ "$commit_message" == *"release=major"* ]]; then | |
version_bump="major" | |
elif [[ "$commit_message" == *"release=minor"* ]]; then | |
version_bump="minor" | |
elif [[ "$commit_message" == *"release=patch"* ]]; then | |
version_bump="patch" | |
else | |
version_bump="patch" | |
fi | |
# update the version in package.json as it's the easiest thing to do using npm | |
git checkout master | |
# Pull latest changes before version bump | |
git pull origin master | |
cd trails-viz-app | |
new_version=$(npm version $version_bump) # this returns the new version number with 'v' as prefix | |
new_version_number=${new_version#v} # Remove the 'v' prefix | |
cd .. | |
echo "local version bump successful $new_version" | |
git add trails-viz-app/package.json | |
git add trails-viz-app/package-lock.json | |
git commit -m "Auto update app version to $new_version_number" | |
echo "commited after version update" | |
git tag "app-$new_version" | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git | |
if ! git push origin "app-$new_version"; then | |
echo "Tag push failed, likely due to an existing tag." | |
exit 1 | |
fi | |
git push origin master | |
echo "pushed new versioning update to master" | |
- name: Setup SSH key | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_KEY }} | |
- name: Transfer files to Digital Ocean Droplet | |
run: | | |
rsync -avz -e "ssh -o StrictHostKeyChecking=no" trails-viz-app/dist/ ${{ secrets.SSH_USERNAME }}@${{ secrets.DROPLET_HOSTNAME }}:/var/www/html/trail-viz-app/ |