forked from itsToggle/rclone_RD
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ben Sarmiento
committed
Sep 23, 2023
1 parent
bb99d44
commit 28a7a70
Showing
4 changed files
with
15 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,11 +32,11 @@ jobs: | |
uses: ilteoood/[email protected] | ||
with: | ||
tag: latest,${{ steps.actual_patch_version.outputs.ACTUAL_PATCH_VERSION }},${{ steps.actual_minor_version.outputs.ACTUAL_MINOR_VERSION }},${{ steps.actual_major_version.outputs.ACTUAL_MAJOR_VERSION }} | ||
imageName: itstoggle/rclone_rd | ||
imageName: debridmediamanager/rclone_rd | ||
platform: linux/amd64,linux/386,linux/arm64,linux/arm/v7,linux/arm/v6 | ||
publish: true | ||
dockerHubUser: ${{ secrets.DOCKER_HUB_USER }} | ||
dockerHubPassword: ${{ secrets.DOCKER_HUB_PASSWORD }} | ||
dockerHubUser: ${{ secrets.DOCKERHUB_USERNAME }} | ||
dockerHubPassword: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
build_docker_volume_plugin: | ||
if: github.repository == 'rclone/rclone' || 1 == 1 | ||
|
@@ -52,9 +52,9 @@ jobs: | |
shell: bash | ||
run: | | ||
VER=${GITHUB_REF#refs/tags/} | ||
PLUGIN_USER=itstoggle | ||
docker login --username ${{ secrets.DOCKER_HUB_USER }} \ | ||
--password-stdin <<< "${{ secrets.DOCKER_HUB_PASSWORD }}" | ||
PLUGIN_USER=debridmediamanager | ||
docker login --username ${{ secrets.DOCKERHUB_USERNAME }} \ | ||
--password-stdin <<< "${{ secrets.DOCKERHUB_TOKEN }}" | ||
for PLUGIN_ARCH in amd64 arm64 arm/v7 arm/v6 ;do | ||
export PLUGIN_USER PLUGIN_ARCH | ||
make docker-plugin PLUGIN_TAG=${PLUGIN_ARCH/\//-} | ||
|