Skip to content

fix: bash cwd navigation #2

fix: bash cwd navigation

fix: bash cwd navigation #2

Workflow file for this run

name: Pack Addon
on:
push:
branches: [ "dev" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.10", "3.11" ]
name: "OS ${{ matrix.os }} Python ${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Pack Addon
run: bash ./scripts/release.sh
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: ./dist/*.zip