Skip to content

Commit 2311c72

Browse files
authored
Merge pull request #35 from kabilar/master
Update GitHub Actions
2 parents 1a3d011 + 7ff3d4c commit 2311c72

21 files changed

+70
-226
lines changed

.github/.staging_workflows/anchored_u24_element_before_release.yaml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/.staging_workflows/anchored_u24_element_release_call.yaml

Lines changed: 0 additions & 59 deletions
This file was deleted.

.github/.staging_workflows/anchored_u24_element_tag_to_release.yaml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/.staging_workflows/normalize.sh

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: DataJoint Contribution Guideline
4-
url: https://docs.datajoint.org/python/community/02-Contribute.html
4+
url: https://datajoint.com/docs/community/contribute/
55
about: Please make sure to review the DataJoint Contribution Guidelines

.github/make-dev.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/make-prod.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/make-test.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/run-act.sh

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Release
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
make_github_release:
6+
uses: datajoint/.github/.github/workflows/make_github_release.yaml@main
7+
pypi_release:
8+
needs: make_github_release
9+
uses: datajoint/.github/.github/workflows/pypi_release.yaml@main
10+
secrets:
11+
TWINE_USERNAME: ${{secrets.TWINE_USERNAME}}
12+
TWINE_PASSWORD: ${{secrets.TWINE_PASSWORD}}
13+
with:
14+
UPLOAD_URL: ${{needs.make_github_release.outputs.release_upload_url}}
15+
mkdocs_release:
16+
uses: datajoint/.github/.github/workflows/mkdocs_release.yaml@main
17+
permissions:
18+
contents: write

0 commit comments

Comments
 (0)