Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
br3ndonland committed Apr 8, 2024
1 parent 69447ab commit 1c6f398
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ name: ci
on:
pull_request:
push:
branches: [develop, main]
branches: [develop, main, wip]
tags: ["[0-9]+.[0-9]+.[0-9]+*"]
workflow_dispatch:
environment:
description: GitHub Actions deployment environment
required: false
type: environment
inputs:
environment:
description: GitHub Actions deployment environment
required: false
type: environment

jobs:
setup:
Expand All @@ -26,7 +27,7 @@ jobs:
elif ${{ github.ref_type == 'tag' }}; then
environment="PyPI"
else
environment=""
environment="wip"
fi
echo "environment=$environment" >>"$GITHUB_OUTPUT"
- name: Create annotation for deployment environment
Expand All @@ -47,6 +48,16 @@ jobs:
PIPX_VERSION: "1.5.0"
steps:
- uses: actions/checkout@v4
- name: WIP
run: |
echo "
Job context
"
echo ${{ toJson(job) }}
echo "
GitHub context
"
echo ${{ toJson(github) }}
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
Expand Down

0 comments on commit 1c6f398

Please sign in to comment.