Skip to content

Commit

Permalink
Change ytdl-core version
Browse files Browse the repository at this point in the history
  • Loading branch information
xMikux committed Aug 20, 2022
1 parent 7c643df commit 1bf9f46
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
46 changes: 46 additions & 0 deletions .github/workflows/docker-build_temp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build Muse Docker Image (Temp)

on:
workflow_dispatch: {}
push:
branches:
- temp_fix

jobs:
Docker:
runs-on: ubuntu-latest

steps:
- name: Checking Repostiory
uses: actions/checkout@v3
with:
ref: temp_fix

- name: Setup multiarch
uses: docker/setup-qemu-action@v2

- name: Set up Buildx
uses: docker/setup-buildx-action@v2

- name: Login ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}

- name: Get current time
uses: josStorer/get-current-time@v2
id: current-time

- name: Build and push
uses: docker/build-push-action@v3
with:
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/xmikux/muse:fix
build-args: |
COMMIT_HASH=${{ github.sha }}
BUILD_DATE=${{ steps.current-time.outputs.time }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
"tsx": "3.8.2",
"xbytes": "^1.7.0",
"youtube.ts": "^0.2.9",
"ytdl-core": "^4.10.0",
"ytdl-core": "github:GreepTheSheep/node-ytdl-core",
"ytsr": "^3.8.0"
}
}

0 comments on commit 1bf9f46

Please sign in to comment.