Merge pull request #10 from Avivbens/support-root-assets #41
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: '📦 Create New Release' | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
pull-requests: write | |
issues: write | |
deployments: write | |
concurrency: | |
group: release-master-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
checks: | |
name: ✅ Check for Release | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
env: | |
HUSKY: 0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: 🧪 Check out repository code | |
uses: ./.github/workflows/health-check | |
with: | |
run-tests: false | |
release: | |
name: 📦 Release Version | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
needs: | |
- checks | |
env: | |
HUSKY: 0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Git Config | |
run: | | |
git config --global user.name "github-bot" | |
git config --global user.email "[email protected]" | |
- name: 🖥️ Setup Env | |
uses: ./.github/workflows/install | |
- name: Build | |
run: npm run build | |
- name: Setup NPM | |
run: | | |
npm config -L user set //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }} | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GIT_AUTHOR_NAME: github-bot | |
GIT_AUTHOR_EMAIL: [email protected] | |
GIT_COMMITTER_NAME: github-bot | |
GIT_COMMITTER_EMAIL: [email protected] | |
run: | | |
npx semantic-release |