File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ name : Bug report
3+ about : Create a report to help us improve
4+ title : ' '
5+ labels : ' '
6+ assignees : ' '
7+
8+ ---
9+
10+ ** Describe the bug**
11+ A clear and concise description of what the bug is.
12+
13+ ** To Reproduce**
14+ Steps to reproduce the behavior:
15+ 1 . Go to '...'
16+ 2 . Execute '....'
17+ 4 . See error
18+
19+ ** Expected behavior**
20+ A clear and concise description of what you expected to happen.
21+
22+ ** Screenshots**
23+ If applicable, add screenshots to help explain your problem.
24+
25+ ** Desktop (please complete the following information):**
26+ - OS: [ e.g. iOS]
27+ - Version [ e.g. 22]
28+
29+ ** Additional context**
30+ Add any other context about the problem here.
Original file line number Diff line number Diff line change 1+ ---
2+ name : Feature request
3+ about : Suggest an idea for this project
4+ title : ' '
5+ labels : ' '
6+ assignees : ' '
7+
8+ ---
9+
10+ ** Is your feature request related to a problem? Please describe.**
11+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [ ...]
12+
13+ ** Describe the solution you'd like**
14+ A clear and concise description of what you want to happen.
15+
16+ ** Describe alternatives you've considered**
17+ A clear and concise description of any alternative solutions or features you've considered.
18+
19+ ** Additional context**
20+ Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change 1+ name : docker
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*.*.*'
7+ pull_request :
8+
9+ permissions :
10+ repository-projects : read
11+ contents : read
12+ packages : write
13+ pull-requests : read
14+
15+ jobs :
16+ docker :
17+ runs-on : ubuntu-latest
18+ steps :
19+ - name : Inject slug/short variables
20+ uses : rlespinasse/github-slug-action@v4
21+
22+ - name : Set up QEMU
23+ uses : docker/setup-qemu-action@v3
24+
25+ - name : Set up Docker Buildx
26+ uses : docker/setup-buildx-action@v3
27+
28+ - name : Login to GitHub Container Registry
29+ uses : docker/login-action@v3
30+ with :
31+ registry : ghcr.io
32+ username : ${{ github.repository_owner }}
33+ password : ${{ secrets.GITHUB_TOKEN }}
34+
35+ - name : Build and push
36+ uses : docker/build-push-action@v6
37+ with :
38+ platforms : linux/amd64
39+ context : packages/indexer/
40+ push : true
41+ tags : " ghcr.io/${{ env.GITHUB_REPOSITORY }}:${{ env.GITHUB_REF_SLUG_URL }}"
You can’t perform that action at this time.
0 commit comments