🚀 v1.2.2 Release #11
Workflow file for this run
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: Release | |
on: | |
release: | |
types: [published] | |
jobs: | |
release: | |
name: Release GitHub Actions | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Release GitHub Actions | |
uses: technote-space/release-github-actions@v8 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COMMIT_EMAIL: [email protected] | |
BRANCH_NAME: release | |
OUTPUT_BUILD_INFO_FILENAME: build.json | |
TEST_TAG_PREFIX: test/ | |
ORIGINAL_TAG_PREFIX: original/ | |
CREATE_MINOR_VERSION_TAG: false | |
CLEAN_TARGETS: .[!.]*,__tests__,src,*.js,*.ts,*.json,*.lock,_config.yml,CODE_OF_CONDUCT.md,node_modules | |
test-integration: | |
runs-on: ${{ matrix.os }} | |
needs: release | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-12] | |
steps: | |
- name: Setup conda v1 | |
uses: s-weigand/setup-conda@v1 | |
- name: Check conda version | |
run: conda --version | |
- name: Check Python version | |
run: | | |
python --version | |
python -c "import sys;print(sys.executable);print(sys.version_info)" | |
- name: Check env | |
run: printenv | |
- name: Install and check pandoc version | |
run: | | |
conda install pandoc | |
pandoc -v |