Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #81 from Charibdys/v1.0
Browse files Browse the repository at this point in the history
V1.0
  • Loading branch information
Charibdys authored Jul 24, 2023
2 parents 0e6bd49 + 28df9f3 commit 32b4d03
Show file tree
Hide file tree
Showing 28 changed files with 2,634 additions and 778 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/deploy-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@ jobs:
crystal -v
shards build --static --stats --time
strip ./bin/privateparlor
strip ./bin/management
mkdir privateparlor
mkdir privateparlor/locales
mv ./bin/privateparlor privateparlor/ && mv config.yaml.copy privateparlor/ && mv locales/* privateparlor/locales/
mv ./bin/privateparlor privateparlor/
mv config.yaml.copy privateparlor/
mv locales/* privateparlor/locales/
mv ./bin/management privateparlor/
tar -cvf privateparlor-x86_64.tar privateparlor/
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
Expand Down Expand Up @@ -60,8 +64,12 @@ jobs:
crystal -v
shards build --static --stats --time
strip ./bin/privateparlor
strip ./bin/management
mkdir /privateparlor/locales
mv ./bin/privateparlor /privateparlor && mv config.yaml.copy /privateparlor && mv locales/* /privateparlor/locales/
mv ./bin/privateparlor /privateparlor
mv config.yaml.copy /privateparlor
mv locales/* /privateparlor/locales/
mv ./bin/management /privateparlor
tar -cvf privateparlor-arm64.tar /privateparlor
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/deploy-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,13 @@ jobs:
crystal -v
shards build --static --no-debug --production --release --stats --time
strip ./bin/privateparlor
strip ./bin/management
mkdir privateparlor
mkdir privateparlor/locales
mv ./bin/privateparlor privateparlor/ && mv config.yaml.copy privateparlor/ && mv locales/* privateparlor/locales/
mv ./bin/privateparlor privateparlor/
mv config.yaml.copy privateparlor/
mv locales/* privateparlor/locales/
mv ./bin/management privateparlor/
tar -cvf privateparlor-x86_64.tar privateparlor/
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
Expand Down Expand Up @@ -56,8 +60,12 @@ jobs:
crystal -v
shards build --static --no-debug --production --release --stats --time
strip ./bin/privateparlor
strip ./bin/management
mkdir /privateparlor/locales
mv ./bin/privateparlor /privateparlor && mv config.yaml.copy /privateparlor && mv locales/* /privateparlor/locales/
mv ./bin/privateparlor /privateparlor
mv config.yaml.copy /privateparlor
mv locales/* /privateparlor/locales/
mv ./bin/management /privateparlor
tar -cvf privateparlor-arm64.tar /privateparlor
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ The following features are planned and being worked on:
- [x] Configurable cache life
- [x] Configurable time and content limits for spam filter
- [x] Inactivity timeout
- [ ] CLI tools and utility scripts
- [x] CLI tools and utility scripts

## Contributing

Expand Down
Loading

0 comments on commit 32b4d03

Please sign in to comment.