ci: 👷 display URL for github action deployments #195
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: Deploy static site | |
on: | |
push: | |
branches: ["master","feat/*","fix/*"] | |
workflow_dispatch: | |
# Allow one concurrent deployment | |
concurrency: | |
group: "static" | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
# outputs: | |
# branch: ${{ steps.clean_branch.outputs.branch }} | |
environment: | |
name: wallet | |
# url: ${{ vars.WEBSITE }} | |
url: ${{ steps.clean_branch.outputs.page_url }} | |
# url: ${{ steps.run_deploy.outputs.deploy_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
check-latest: true | |
node-version: 20 | |
cache: 'npm' | |
- run: npm ci | |
- name: Get clean branch name | |
id: clean_branch | |
env: | |
REPLACE_SLASH: "/" | |
WITH_DASH: "-" | |
BASE_DOMAIN: ${{ vars.BASE_DOMAIN }} | |
run: | | |
export BRANCH=${GITHUB_REF_NAME//$REPLACE_SLASH/$WITH_DASH} | |
export PAGE_URL=https://$BRANCH.$BASE_DOMAIN/ | |
echo "branch=$BRANCH" >> "$GITHUB_OUTPUT" | |
echo "page_url=$PAGE_URL" >> "$GITHUB_OUTPUT" | |
echo "name=page_url::$PAGE_URL" >> $GITHUB_OUTPUT | |
- name: Run deploy.js | |
id: run_deploy | |
env: | |
PAGE_URL: ${{ steps.clean_branch.outputs.page_url }} | |
GITHUB_REF_NAME: ${{ github.ref_name }} | |
GITHUB_OUTPUT: $GITHUB_OUTPUT | |
run: | | |
DEPLOY_URL=$(((node .github/workflows/deploy.js) 2>&1) || true) | |
echo "name=deploy_url::$DEPLOY_URL" >> $GITHUB_OUTPUT | |
- name: Deploy via rsync | |
id: deployment | |
uses: bnnanet/github-actions-rsync@master | |
with: | |
RSYNC_OPTIONS: -avzr --delete --exclude '.git*' | |
RSYNC_SOURCE: ./dist/ | |
RSYNC_TARGET: ~/branch/${{ steps.clean_branch.outputs.branch }} | |
env: | |
SSH_PRIVATE_KEY: ${{secrets.SSH_PRIVATE_KEY}} | |
SSH_USERNAME: ${{secrets.SSH_USERNAME}} | |
SSH_HOSTNAME: ${{secrets.SSH_HOSTNAME}} | |
SSH_CONFIG: ${{secrets.SSH_CONFIG}} |