Skip to content

Refactor lint configuration (#18) #42

Refactor lint configuration (#18)

Refactor lint configuration (#18) #42

Workflow file for this run

---
name: Release
on:
push:
tags:
- "*"
defaults:
run:
working-directory: 'nephelaiio.ubuntu_installer'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v3
with:
path: 'nephelaiio.ubuntu_installer'
- name: Set up Python 3
uses: actions/setup-python@v4
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 }}"