Skip to content

Commit

Permalink
Merge pull request Tribler#7320 from drew2a/refactoring/autoformat
Browse files Browse the repository at this point in the history
Apply autoformat + optimise imports
  • Loading branch information
drew2a committed Mar 15, 2023
2 parents af701fe + e17d3ba commit a916400
Show file tree
Hide file tree
Showing 149 changed files with 532 additions and 565 deletions.
6 changes: 4 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All @@ -24,8 +25,9 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. Windows 11]
- Tribler's version [e.g. 7.10.0]

- OS: [e.g. Windows 11]
- Tribler's version [e.g. 7.10.0]

**Additional context**
Add any other context about the problem here.
40 changes: 20 additions & 20 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,31 @@ name: Docker Image CI
on:
workflow_call:
secrets:
DOCKER_USER:
required: true
DOCKER_PASSWORD:
required: true
DOCKER_USER:
required: true
DOCKER_PASSWORD:
required: true
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
- name: Checkout repository and submodules
uses: actions/checkout@v2

- name: Docker login
env:
DOCKER_USER: ${{secrets.DOCKER_USER}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: Docker login
env:
DOCKER_USER: ${{secrets.DOCKER_USER}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: Build the Docker image
run: |
docker build . --file Dockerfile --tag triblercore/triblercore:latest
- name: Build the Docker image
run: |
docker build . --file Dockerfile --tag triblercore/triblercore:latest
- name: Push to Docker Hub
env:
DOCKER_USER: ${{secrets.DOCKER_USER}}
run: |
docker push $DOCKER_USER/triblercore:latest
- name: Push to Docker Hub
env:
DOCKER_USER: ${{secrets.DOCKER_USER}}
run: |
docker push $DOCKER_USER/triblercore:latest
Loading

0 comments on commit a916400

Please sign in to comment.