0.0.2a3 (#3)
This commit is contained in:
parent
236e372e00
commit
645fd26ae1
3 changed files with 6 additions and 10 deletions
10
.github/workflows/release.yaml
vendored
10
.github/workflows/release.yaml
vendored
|
@ -6,16 +6,11 @@ on:
|
||||||
- stable
|
- stable
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
prepare:
|
publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
publish:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs:
|
|
||||||
- prepare
|
|
||||||
steps:
|
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python 3.8
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v1
|
||||||
with:
|
with:
|
||||||
|
@ -32,9 +27,10 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs:
|
needs:
|
||||||
- prepare
|
|
||||||
- publish
|
- publish
|
||||||
steps:
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Build the Docker image
|
- name: Build the Docker image
|
||||||
run: docker build --tag butterrobot:$(git rev-parse --short HEAD) docker
|
run: docker build --tag butterrobot:$(git rev-parse --short HEAD) docker
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ FROM alpine:3.11
|
||||||
|
|
||||||
ENV PYTHON_VERSION=3.8.2-r1
|
ENV PYTHON_VERSION=3.8.2-r1
|
||||||
ENV APP_PORT 8080
|
ENV APP_PORT 8080
|
||||||
ENV BUTTERROBOT_VERSION 0.0.2a2
|
ENV BUTTERROBOT_VERSION 0.0.2a3
|
||||||
ENV EXTRA_DEPENDENCIES ""
|
ENV EXTRA_DEPENDENCIES ""
|
||||||
|
|
||||||
COPY bin/start-server.sh /usr/local/bin/start-server
|
COPY bin/start-server.sh /usr/local/bin/start-server
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "butterrobot"
|
name = "butterrobot"
|
||||||
version = "0.0.2a2"
|
version = "0.0.2a3"
|
||||||
description = "What is my purpose?"
|
description = "What is my purpose?"
|
||||||
authors = ["Felipe Martin <me@fmartingr.com>"]
|
authors = ["Felipe Martin <me@fmartingr.com>"]
|
||||||
license = "GPL-2.0"
|
license = "GPL-2.0"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue