diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml new file mode 100644 index 0000000..99b73c5 --- /dev/null +++ b/.github/workflows/github-release.yml @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# +# This file is part of Invenio. +# Copyright (C) 2020 CERN. +# +# Invenio is free software; you can redistribute it and/or modify it +# under the terms of the MIT License; see LICENSE file for more details + +name: GitHub Release + +on: + push: + tags: + - v* + +jobs: + Release: + runs-on: ubuntu-20.04 + + steps: + - name: "GitHub Release" + + uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 8db76da..33a24a3 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -40,3 +40,4 @@ jobs: user: __token__ # The token is provided by the inveniosoftware organization password: ${{ secrets.pypi_token }} +