Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.CR_PAT }}

- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch

- name: Build the Soup Docker image
run: |
docker build . --tag ghcr.io/delxhq/soup:latest
docker push ghcr.io/delxhq/soup:latest
docker build . --tag ghcr.io/delxhq/soup:${{ steps.extract_branch.outputs.branch }}
docker push ghcr.io/delxhq/soup:${{ steps.extract_branch.outputs.branch }}
190 changes: 184 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
"private": false,
"dependencies": {
"@bwatton/logger": "^1.0.6",
"@types/ioredis": "^4.28.1",
"better-erela.js-spotify": "^1.1.3",
"bufferutil": "^4.0.4",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"erela.js": "^2.3.3",
"ioredis": "^4.28.0",
"node-fetch": "^2.6.5",
"utf-8-validate": "^5.0.6",
"zlib-sync": "^0.1.7"
Expand Down
Loading