Skip to content

Bump gitpython from 3.1.31 to 3.1.37 #30

Bump gitpython from 3.1.31 to 3.1.37

Bump gitpython from 3.1.31 to 3.1.37 #30

Workflow file for this run

name: "main-ci"
on:
push:
branches-ignore:
- pages
tags-ignore:
- latest
jobs:
releases:
name: "Release"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- name: "Release latest"
uses: "marvinpinto/action-automatic-releases@latest"
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }}
with:
repo_token: "${{ secrets.CI_GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
- name: "release"
uses: "marvinpinto/action-automatic-releases@latest"
if: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }}
with:
repo_token: "${{ secrets.CI_GITHUB_TOKEN }}"
prerelease: ${{ contains(github.ref_name, '-rc') }}