Skip to content

Commit 1155c87

Browse files
authored
Merge pull request #23 from nlnwa/feat/use-correct-url-icon
feat: use correct URL icon
2 parents c2c6113 + 5af9837 commit 1155c87

File tree

6 files changed

+21
-2
lines changed

6 files changed

+21
-2
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.ico filter=lfs diff=lfs merge=lfs -text

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
matrix:
1818
image-type: [solr, solrwayback, warc-indexer]
1919
steps:
20+
- name: Code checkout
21+
uses: actions/checkout@v3
22+
with:
23+
lfs: true
2024
- name: Set up Docker Buildx
2125
uses: docker/setup-buildx-action@v2
2226

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
matrix:
2222
image-type: [solr, solrwayback, warc-indexer]
2323
steps:
24+
- name: Code checkout
25+
uses: actions/checkout@v3
26+
with:
27+
lfs: true
2428
- name: Set up Docker Buildx
2529
uses: docker/setup-buildx-action@v2
2630

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- name: Checkout
12+
- name: Code checkout
1313
uses: actions/checkout@v3
14+
with:
15+
lfs: true
1416
- name: Set up Python ${{ matrix.python-version }}
1517
uses: actions/setup-python@v4
1618
with:
@@ -27,8 +29,10 @@ jobs:
2729
runs-on: ubuntu-latest
2830

2931
steps:
30-
- name: Checkout
32+
- name: Code checkout
3133
uses: actions/checkout@v3
34+
with:
35+
lfs: true
3236
- name: Set up Python ${{ matrix.python-version }}
3337
uses: actions/setup-python@v4
3438
with:

Dockerfile.solrwayback

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,6 @@ COPY --from=solrwayback-bundle \
4646
COPY --from=solrwayback-bundle \
4747
/app/solrwayback_package_${SOLRWAYBACK_VERSION}/apache-tomcat-${SOLRWAYBACK_TOMCAT_VERSION}/webapps/ROOT.war \
4848
${CATALINA_HOME}/webapps/ROOT.war
49+
50+
# Set URL icon for the web application
51+
COPY favicon.ico ${CATALINA_HOME}/webapps/solrwayback/

favicon.ico

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:e999907eab50c26cb39d58ea194f8be3223692582c08a096c6eeef75bb568299
3+
size 100870

0 commit comments

Comments
 (0)