Skip to content

Commit

Permalink
Also remove it from release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sella-GH committed Jan 19, 2025
1 parent 6ae6b7d commit 53d0594
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ jobs:
mv ./LICENSE ./docker-zip/LICENSE
mv ./README.md ./docker-zip/README.md
mv ./SECURITY.md ./docker-zip/SECURITY.md
mkdir -p ./docker-zip/AzzyBot/Backups
touch ./docker-zip/AzzyBot/Backups/.keep
mkdir -p ./docker-zip/AzzyBot/Logs
touch ./docker-zip/AzzyBot/Backups/.keep
mkdir -p ./docker-zip/AzzyBot/Modules/AzuraCast/Files
mkdir -p ./docker-zip/AzzyBot/Modules/MusicStreaming/Files
mv ./src/AzzyBot.Bot/Modules/MusicStreaming/Files/application.yml ./docker-zip/AzzyBot/Modules/MusicStreaming/Files/application.yml
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.3.0
### General
- We're now using the new ARM64 GitHub Actions runner for the Docker images
- This results in a faster build time and more compact actions workflow

## 2.2.3 - 2025-01-15
### Dependencies
- Updated [DSharpPlus](https://github.com/DSharpPlus/DSharpPlus) to version 5.0.0-nightly-02448
Expand Down
2 changes: 1 addition & 1 deletion release.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN sed -i "s\Commit not found\\$COMMIT\g" /app/Modules/Core/Files/AppStats.json
&& sed -i "s\Lines of source code not found\\$LOC_CS\g" /app/Modules/Core/Files/AppStats.json

# Add new user
RUN groupadd azzy && useradd -m -s /bin/bash -g azzy azzy && chown -R azzy:azzy /app && chmod 0755 -R /app
RUN useradd -M -U azzy && chown -R azzy:azzy /app && chmod 0755 -R /app
USER azzy

# Start the app
Expand Down
2 changes: 1 addition & 1 deletion release.alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN sed -i "s\Commit not found\\$COMMIT\g" /app/Modules/Core/Files/AppStats.json
&& sed -i "s\Lines of source code not found\\$LOC_CS\g" /app/Modules/Core/Files/AppStats.json

# Add new user
RUN addgroup azzy && adduser -D -G azzy azzy && chown -R azzy:azzy /app && chmod 0755 -R /app
RUN adduser -D -H azzy && chown -R azzy:azzy /app && chmod 0755 -R /app
USER azzy

# Start the app
Expand Down

0 comments on commit 53d0594

Please sign in to comment.