Skip to content

Workflow file for this run

# -*- mode: yaml -*-
name: Tag new version
on:
push:
branches:
- master
- builds
jobs:
bump-and-tag:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Trigger eman dev
uses: actions/github-script@v6
with:
github-token: ${{ secrets.EMAN_DEV_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'cryoem',
repo: 'eman-feedstock',
workflow_id: 'update-version.yml',
ref: 'mnt'
})