0.15.0 #2
Workflow file for this run
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
# Runs on releases | |
name: Publish release notes | |
on: | |
release: | |
types: [published] | |
jobs: | |
stable: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # pin@v4.1.5 | |
- name: Version Check | |
run: | | |
pip install --require-hashes -r .github/requirements.txt | |
python3 .github/scripts/version_check.py | |
- name: Push to Stable Branch | |
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df # pin@v0.8.0 | |
if: env.stable_release == 'true' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: stable | |
force: true | |
publish-build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # pin@v4.1.5 | |
- name: Environment Setup | |
uses: ./.github/actions/setup | |
with: | |
npm: true | |
- name: Install dependencies | |
run: cd src/frontend && yarn install | |
- name: Build frontend | |
run: cd src/frontend && npm run compile && npm run build | |
- name: Zip frontend | |
run: | | |
cd src/backend/InvenTree/web/static/web | |
zip -r ../frontend-build.zip * | |
- uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # pin@2.9.0 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: src/backend/InvenTree/web/static/frontend-build.zip | |
asset_name: frontend-build.zip | |
tag: ${{ github.ref }} | |
overwrite: true |