-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Dockerhub descritpion update. Update README
- Loading branch information
Showing
2 changed files
with
21 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,21 +55,21 @@ jobs: | |
if: steps.releases.outputs.current != steps.releases.outputs.target | ||
env: | ||
TARGET_VERSION: ${{ steps.releases.outputs.target }} | ||
DOCKERHUB_REPOSITORY: hurlenko/filebrowser | ||
DOCKERHUB_USERNAME: hurlenko | ||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} | ||
DOCKERHUB_REPOSITORY: ${{ secrets. DOCKERHUB_REPOSITORY }} | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
run: | | ||
echo $DOCKERHUB_PASSWORD | docker login --username $DOCKERHUB_USERNAME --password-stdin | ||
docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 --build-arg VERSION=$TARGET_VERSION --build-arg VCS_REF=${GITHUB_SHA::7} --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` -t $DOCKERHUB_REPOSITORY:$TARGET_VERSION . | ||
docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 --build-arg VERSION=$TARGET_VERSION --build-arg VCS_REF=${GITHUB_SHA::7} --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` -t $DOCKERHUB_REPOSITORY:latest . | ||
# - name: Update DockerHub Description | ||
# if: steps.releases.outputs.current != steps.releases.outputs.target | ||
# uses: peter-evans/[email protected] | ||
# env: | ||
# DOCKERHUB_USERNAME: hurlenko | ||
# DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} | ||
# DOCKERHUB_REPOSITORY: hurlenko/filebrowser | ||
- name: Update DockerHub Description | ||
if: steps.releases.outputs.current != steps.releases.outputs.target | ||
uses: peter-evans/[email protected] | ||
env: | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
DOCKERHUB_REPOSITORY: ${{ secrets. DOCKERHUB_REPOSITORY }} | ||
|
||
- name: Create new Github release | ||
if: steps.releases.outputs.current != steps.releases.outputs.target | ||
|
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