Skip to content

Commit

Permalink
on tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
cupcakearmy committed May 2, 2021
1 parent b053fc1 commit c1ff3a6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: ci
on:
workflow_dispatch:
push:
branches:
- "main"
tags:
- "v*.*.*"

jobs:
docker:
Expand All @@ -14,6 +14,14 @@ jobs:
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Docker Labels
id: meta
uses: crazy-max/ghaction-docker-meta@v2
with:
images: cupcakearmy/cryptgeon
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Login to DockerHub
uses: docker/login-action@v1
with:
Expand All @@ -24,6 +32,6 @@ jobs:
uses: docker/build-push-action@v2
with:
push: true
tags: cupcakearmy/cryptgeon:latest
tags: ${{ steps.meta.outputs.tags }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ _cryptgeon_ is an secure, open source sharing note service inspired by [_PrivNot

each note has a 512bit generated <i>id</i> that is used to retrieve the note. data is stored in memory and never persisted to disk.

## Screenshot

![screenshot](./design/screen.jpg)

## Deployment

Docker is the easiest way.
Expand Down
Binary file added design/screen.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c1ff3a6

Please sign in to comment.