Skip to content

Commit

Permalink
Minor fixes (#6)
Browse files Browse the repository at this point in the history
* Publish workflow fixes

Signed-off-by: Janos SUTO <[email protected]>

* Renamed README to README.md

Signed-off-by: Janos SUTO <[email protected]>

* Updated readme.md

Signed-off-by: Janos SUTO <[email protected]>

* Created release workflow

Signed-off-by: Janos SUTO <[email protected]>

---------

Signed-off-by: Janos SUTO <[email protected]>
  • Loading branch information
jsuto authored Apr 12, 2024
1 parent a0ed25e commit 24da644
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 20 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,10 @@ on:
env:
IMAGE_NAME: sutoj/piler
TEST_TAG: test
DISTRO: jammy
PROJECT_ID: piler
ARCH: amd64

jobs:
build:
publish:
if: github.ref_name == 'master'

runs-on:
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Publish release

on:
push:
tags:
- piler*

env:
IMAGE_NAME: sutoj/piler
TEST_TAG: test

permissions:
contents: write

jobs:
publish:

runs-on:
- self-hosted
- X64

steps:
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="${GITHUB_REPOSITORY#*/} ${tag#*-}" \
--generate-notes
18 changes: 1 addition & 17 deletions README → README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
piler is an open source email archival application.
piler is an open source email archival application. Please visit https://www.mailpiler.org/ for more.

Features:

Expand All @@ -11,40 +11,24 @@ Features:
- message compression
- message encryption
- digital fingerprinting and verification

- full text search
- simple and expert search
- save search criteria
- tagging emails
- view, export, restore emails

- bulk import/export messages

- access control

- AD / LDAP authentication

- IMAP, POP3 authentication

- single sign-on (SSO)

- Google Apps support

- Office 365 support

- STARTTLS support

- Google Authenticator support for 2-factor authentication

- i18n
- customisable theme

- audit logs
- search in audit logs

- online status info

- accounting

- recognised formats: PST, EML, Maildir, mailbox

0 comments on commit 24da644

Please sign in to comment.