Skip to content

Bump certifi from 2023.11.17 to 2024.7.4 (#32) #10

Bump certifi from 2023.11.17 to 2024.7.4 (#32)

Bump certifi from 2023.11.17 to 2024.7.4 (#32) #10

Workflow file for this run

---
name: Release
on:
push:
tags:
- "*"
defaults:
run:
working-directory: 'nephelaiio.nfs'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
path: 'nephelaiio.nfs'
- 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 poetry
- name: Trigger a new import on galaxy
run: make publish
env:
GALAXY_API_KEY: "${{ secrets.GALAXY_API_KEY }}"
GITHUB_REPOSITORY: "${{ github.repository }}"