Release #34
This file contains hidden or 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: CI/CD Release | |
run-name: Release | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
id-token: write | |
jobs: | |
site-release: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository 🛎️ | |
uses: actions/checkout@v4 | |
- name: Setup Bun 📦 | |
uses: sliit-foss/actions/bun/[email protected] | |
- name: Deploy 🚀 | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Akalanka Perera" | |
GIT_USER=elcengine GIT_PASS=${{ secrets.REPOSITORY_ACCESS_TOKEN }} DEPLOYMENT_BRANCH=gh-pages bun run deploy |