Skip to content

Commit 4a54cb3

Browse files
author
Ivan Rylach
committed
add a release workflow
1 parent b099fab commit 4a54cb3

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
3+
on:
4+
release:
5+
types:
6+
- created
7+
8+
jobs:
9+
10+
tests:
11+
name: Unit Tests
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Check out
15+
uses: actions/checkout@v2
16+
- name: Build the Docker image
17+
run: docker build . --file Dockerfile --tag idempotent-requests-server:$(date +%s)

0 commit comments

Comments
 (0)