Skip to content

Commit

Permalink
Merge pull request #3 from Multi-Agent-io/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
arseniiarsenii authored Apr 4, 2022
2 parents aa17ea0 + dceeb22 commit 317d944
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
38 changes: 38 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Auto Release

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true

- name: get version
id: get_version
shell: bash
run: |
echo "::set-output name=name::$(poetry version)"
echo "::set-output name=version::$(poetry version | cut -d " " -f 2)"
- name: Upload assets to release
uses: softprops/action-gh-release@v1
with:
name: ${{ steps.get_version.outputs.name }}
tag_name: ${{ steps.get_version.outputs.version }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "feecc-ipfs-gateway"
version = "0.1.0"
version = "1.0.0"
description = "A simple IPFS gateway for Feecc QA system"
authors = ["arseniiarsenii <arseniivelichko2@gmail.com>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 317d944

Please sign in to comment.