Skip to content

Commit

Permalink
chore: disable release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cdummett committed Aug 28, 2024
1 parent 697d6c0 commit 108d3ac
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 57 deletions.
56 changes: 28 additions & 28 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
name: Release new version
# name: Release new version

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- "v*.*.*" # Push events to matching v*, i.e. v1.0, v20.15.10
- "!v*-snapshot"
- "!vega*"
# on:
# push:
# # Sequence of patterns matched against refs/tags
# tags:
# - "v*.*.*" # Push events to matching v*, i.e. v1.0, v20.15.10
# - "!v*-snapshot"
# - "!vega*"

jobs:
release:
name: Release
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Check out code
uses: actions/checkout@v3
# jobs:
# release:
# name: Release
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.10"]
# steps:
# - name: Check out code
# uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
# - name: Set up Python ${{ matrix.python-version }}
# id: setup-python
# uses: actions/setup-python@v3
# with:
# python-version: ${{ matrix.python-version }}

- name: Deploy Package
uses: JRubics/[email protected]
with:
python_version: ${{ matrix.python-version }}
pypi_token: ${{ secrets.PYPI_TOKEN }}
# - name: Deploy Package
# uses: JRubics/[email protected]
# with:
# python_version: ${{ matrix.python-version }}
# pypi_token: ${{ secrets.PYPI_TOKEN }}
58 changes: 29 additions & 29 deletions .github/workflows/release_test.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
name: Release new version to test
# name: Release new version to test

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- "v*-snapshot" # Push events to matching v*, i.e. v1.0, v20.15.10
- "!vega*"
# on:
# push:
# # Sequence of patterns matched against refs/tags
# tags:
# - "v*-snapshot" # Push events to matching v*, i.e. v1.0, v20.15.10
# - "!vega*"

jobs:
release:
name: Release
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Check out code
uses: actions/checkout@v3
# jobs:
# release:
# name: Release
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.10"]
# steps:
# - name: Check out code
# uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
# - name: Set up Python ${{ matrix.python-version }}
# id: setup-python
# uses: actions/setup-python@v3
# with:
# python-version: ${{ matrix.python-version }}

- name: Deploy Package
uses: JRubics/[email protected]
with:
python_version: ${{ matrix.python-version }}
pypi_token: ${{ secrets.PYPI_TEST_TOKEN }}
repository_name: "testpypi"
repository_url: "https://test.pypi.org/legacy/"
# - name: Deploy Package
# uses: JRubics/[email protected]
# with:
# python_version: ${{ matrix.python-version }}
# pypi_token: ${{ secrets.PYPI_TEST_TOKEN }}
# repository_name: "testpypi"
# repository_url: "https://test.pypi.org/legacy/"

0 comments on commit 108d3ac

Please sign in to comment.