🔖 Update version to 0.4.4-3 #275
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: Addon Updates (Dev) | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main, dev, beta, stable] | |
jobs: | |
generate: | |
name: Generate Addon Update Manifests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Setup Gluon | |
run: npm i -g gluon-build@next | |
- name: Load config | |
run: gluon ci --brand dev | |
- name: Generate update manifest | |
run: gluon updates-addons | |
- name: Checkout tools repo | |
uses: actions/checkout@v3 | |
with: | |
repository: JaduaStudios/GoUpdates | |
path: updates | |
token: ${{ secrets.ROBOT_TOKEN }} | |
- name: Copy update manifests | |
run: | | |
mkdir -p updates/browser | |
cp -a dist/update/. updates/ | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 🔖 Upload update addon manifests | |
commit_user_name: Jadua Studios Bot | |
commit_user_email: [email protected] | |
repository: ./updates |