Skip to content

Update python setup action (#15) #22

Update python setup action (#15)

Update python setup action (#15) #22

Workflow file for this run

---
name: release
on:
push:
tags:
- "*"
defaults:
run:
working-directory: 'nephelaiio.growfs'
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v4
with:
path: 'nephelaiio.growfs'
- name: set up Python 3
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Update ubuntu repositories
run: sudo apt-get update
- name: Install make
run: sudo apt-get install -y make
- name: Install dependencies
run: make install
- name: Trigger a new import on galaxy
run: make publish
env:
GALAXY_API_KEY: "${{ secrets.GALAXY_API_KEY }}"
GITHUB_REPOSITORY: "${{ github.repository }}"