Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Bump bootstrap from 5.2.2 to 5.3.1 #53

Bump bootstrap from 5.2.2 to 5.3.1

Bump bootstrap from 5.2.2 to 5.3.1 #53

Workflow file for this run

---
name: CI
on:
pull_request:
branches: [master, nightly]
types: [opened, synchronize, reopened]
push:
branches: [master]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check_changelog:
name: Check Changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Verify Changelog
id: verify_changelog
if: ${{ github.ref == 'refs/heads/master' || github.base_ref == 'master' }}
# base_ref for pull request check, ref for push
uses: LizardByte/.github/actions/verify_changelog@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
outputs:
next_version: ${{ steps.verify_changelog.outputs.changelog_parser_version }}
last_version: ${{ steps.verify_changelog.outputs.latest_release_tag_name }}
release_body: ${{ steps.verify_changelog.outputs.changelog_parser_description }}
build:
runs-on: ubuntu-20.04
needs: check_changelog
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: Plugger.bundle
- name: Install Python 2.7
uses: actions/setup-python@v4
with:
python-version: '2.7'
- name: Set up Python 2.7 Dependencies
working-directory: Plugger.bundle
run: |
echo "Installing Requirements"
python --version
python -m pip --no-python-version-warning --disable-pip-version-check install --upgrade pip setuptools
# install dev requirements
python -m pip install --upgrade -r requirements-dev.txt
python -m pip install --upgrade --target=./Contents/Libraries/Shared -r \
requirements.txt --no-warn-script-location
- name: Install npm packages
working-directory: Plugger.bundle
run: |
npm install
mv ./node_modules ./Contents/Resources/web
- name: Build plist
working-directory: Plugger.bundle
env:
BUILD_VERSION: ${{ needs.check_changelog.outputs.next_version }}
run: |
python ./scripts/build_plist.py
- name: Test Plex Plugin
working-directory: Plugger.bundle
run: |
python ./Contents/Code/__init__.py
- name: Upload Artifacts
if: ${{ github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' }}
uses: actions/upload-artifact@v3
with:
name: Plugger.bundle
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
path: |
${{ github.workspace }}
!**/*.git*
!**/*.pyc
!**/__pycache__
!**/plexhints*
!**/Plugger.bundle/.*
!**/Plugger.bundle/cache.sqlite
!**/Plugger.bundle/DOCKER_README.md
!**/Plugger.bundle/Dockerfile
!**/Plugger.bundle/docs
!**/Plugger.bundle/scripts
- name: Package Release
shell: bash
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: |
7z \
"-xr!*.git*" \
"-xr!*.pyc" \
"-xr!__pycache__" \
"-xr!plexhints*" \
"-xr!Plugger.bundle/.*" \
"-xr!Plugger.bundle/cache.sqlite" \
"-xr!Plugger.bundle/DOCKER_README.md" \
"-xr!Plugger.bundle/Dockerfile" \
"-xr!Plugger.bundle/docs" \
"-xr!Plugger.bundle/scripts" \
a "./Plugger.bundle.zip" "Plugger.bundle"
mkdir artifacts
mv ./Plugger.bundle.zip ./artifacts/
- name: Create Release
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: LizardByte/.github/actions/create_release@master
with:
token: ${{ secrets.GH_BOT_TOKEN }}
next_version: ${{ needs.check_changelog.outputs.next_version }}
last_version: ${{ needs.check_changelog.outputs.last_version }}
release_body: ${{ needs.check_changelog.outputs.release_body }}