Skip to content

Commit

Permalink
Add forced release action
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvisscher committed Oct 2, 2024
1 parent e63ace0 commit 05bad41
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/just-release.yaml
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 }}"

0 comments on commit 05bad41

Please sign in to comment.