Update dependency tailwindcss to v3.4.16 (#1269) #229
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 Baremetal | |
on: | |
push: | |
branches: [main] | |
paths: [ | |
'baremetal/**', | |
'.github/workflows/deploy-baremetal.yml' | |
] | |
workflow_dispatch: | |
jobs: | |
deploy-baremetal: | |
if: github.repository == 'redwoodjs/deploy-target-ci' | |
name: 🤘 Deploy Baremetal | |
runs-on: ubuntu-latest | |
env: | |
REDWOOD_CI: 1 | |
defaults: | |
run: | |
working-directory: ./baremetal | |
steps: | |
- uses: actions/checkout@v4 | |
- name: ⬢ Enable Corepack | |
run: corepack enable | |
- name: ⬢ Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: 🐈 Yarn install | |
run: yarn install --inline-builds | |
- name: 🔑 Setup SSH Keys and known_hosts | |
run: | | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY_BAREMETAL }}" | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
- name: 🚀 Deploy | |
run: yarn rw deploy baremetal production | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
message-slack: | |
needs: deploy-baremetal | |
if: always() | |
name: 💬 Message Slack | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get `deploy_status` | |
run: | | |
RW_DEPLOY_STATUS=$(echo '{ | |
"failure": "Deploy failed 🚨", | |
"success": "Deploy successful ✅", | |
"cancelled": "Deploy cancelled 🔘", | |
"skipped": "Deploy skipped 🔘" | |
}' | \ | |
jq -r .${{ needs.deploy-baremetal.result }} | |
) | |
echo "RW_DEPLOY_STATUS=$RW_DEPLOY_STATUS" >> $GITHUB_ENV | |
- name: Get `deploy_commit` | |
run: | | |
RW_DEPLOY_COMMIT=$(echo '${{ github.event.head_commit.message }}' | awk 'NR==1 {print}') | |
echo "RW_DEPLOY_COMMIT=$RW_DEPLOY_COMMIT" >> $GITHUB_ENV | |
- name: 💬 Message Slack | |
uses: slackapi/slack-github-action@v2 | |
with: | |
payload: | | |
{ | |
"deploy_target": "Baremetal 🤘", | |
"deploy_status": "${{ env.RW_DEPLOY_STATUS }}", | |
"deploy_commit": "${{ env.RW_DEPLOY_COMMIT }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |