Skip to content

Commit

Permalink
Merge pull request #79 from iameskild/20230807_trigger_helm_release
Browse files Browse the repository at this point in the history
Replace set-output command
  • Loading branch information
iameskild authored Sep 7, 2023
2 parents 923e230 + 544518e commit 34cbd18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
id: publishing
shell: python
run: |
import os
publishing = ""
if (
"${{ github.repository }}" == "yuvipanda/jupyterhub-ssh"
Expand All @@ -61,7 +62,8 @@ jobs:
):
publishing = "true"
print("Publishing chart")
print(f"::set-output name=publishing::{publishing}")
with open(os.environ['GITHUB_OUTPUT'], 'a') as fh:
print(f'publishing={publishing}', file=fh)
- name: Set up QEMU (for docker buildx)
uses: docker/setup-qemu-action@27d0a4f181a40b142cce983c5393082c365d1480
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
repos:
# Autoformat: Python code
- repo: https://github.com/psf/black
rev: 21.7b0
rev: 22.3.0
hooks:
- id: black
args: [--target-version=py39]
Expand Down Expand Up @@ -48,7 +48,7 @@ repos:
- id: check-executables-have-shebangs

# Lint: Python code
- repo: https://gitlab.com/pycqa/flake8
- repo: https://github.com/pycqa/flake8
rev: "3.9.2"
hooks:
- id: flake8

0 comments on commit 34cbd18

Please sign in to comment.