Skip to content

Commit

Permalink
remove trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
erubboli committed Sep 11, 2024
1 parent ed300c7 commit fc7cae3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install toml
# Install any other dependencies your script might need
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Determine version
id: version
run: |
Expand All @@ -44,4 +44,4 @@ jobs:
run: python build-tools/docker/build.py --push --docker-hub-user ${{ secrets.DOCKERHUB_USERNAME }} --version ${{ steps.version.outputs.VERSION }} --latest

env:
DOCKER_BUILDKIT: 1
DOCKER_BUILDKIT: 1
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#exclude python env
env/

#exclude env
#exclude env
.env

# Test Python cache
Expand Down
4 changes: 2 additions & 2 deletions build-tools/win/create-nsis-script.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Section "Uninstall"
; Remove shortcuts
Delete "`${DESKTOP}\`${APPNAME}.lnk"
Delete "`${SMPROGRAMS}\`${COMPANYNAME}\`${APPNAME}.lnk"
RMDir "`${SMPROGRAMS}\`${COMPANYNAME}"
RMDir "`${SMPROGRAMS}\`${COMPANYNAME}"
; Remove directories used
RMDir "`$`INSTDIR"
Expand All @@ -97,4 +97,4 @@ SectionEnd

# Remove any potential UTF-8 BOM and ensure ASCII encoding
$NSIS_SCRIPT = $NSIS_SCRIPT.TrimStart([char]0xFEFF)
[System.IO.File]::WriteAllLines("installer.nsi", $NSIS_SCRIPT)
[System.IO.File]::WriteAllLines("installer.nsi", $NSIS_SCRIPT)

0 comments on commit fc7cae3

Please sign in to comment.