-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e63ace0
commit 05bad41
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: force stable release | ||
on: | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up conda-build environment | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
python-version: 3.11 | ||
activate-environment: build | ||
environment-file: .github/conda-envs/build.yml | ||
- name: Build activity-browser stable | ||
run: | | ||
conda build recipe/ | ||
- name: Upload to anaconda.org | ||
run: | | ||
anaconda -t ${{ secrets.CONDA_UPLOAD_TOKEN }} upload \ | ||
/usr/share/miniconda/envs/build/conda-bld/noarch/*.tar.bz2 | ||
- name: Update wiki | ||
run: ./.github/scripts/update_wiki.sh "Automated documentation update for $GITHUB_REF_NAME" "${{ secrets.GITHUB_TOKEN }}" |