Skip to content

Commit d4e4dcd

Browse files
Replace meilisearch actions with wabarc/.github/meilisearch instead (#491)
* Replace meilisearch actions with wabarc/.github/meilisearch instead * Move up check out job * update changelog.md
1 parent c279783 commit d4e4dcd

File tree

2 files changed

+18
-24
lines changed

2 files changed

+18
-24
lines changed

.github/workflows/testing.yml

+17-24
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,19 @@ jobs:
6565
egress-policy: audit
6666
disable-telemetry: true
6767

68+
- name: Check out code base
69+
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
70+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
71+
with:
72+
fetch-depth: 0
73+
74+
- name: Check out code base
75+
if: github.event_name == 'pull_request'
76+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
77+
with:
78+
fetch-depth: 0
79+
ref: ${{ github.event.pull_request.head.sha }}
80+
6881
- name: Set up Go ${{ matrix.go }}.x
6982
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # v3.3.1
7083
with:
@@ -87,12 +100,10 @@ jobs:
87100
chrome-version: stable
88101

89102
- name: Set up Meilisearch
90-
if: matrix.os == 'ubuntu-latest'
91-
uses: moy2010/meilisearch-github-action@fcc5ef714af0596633665032d459bfb279d3c730 # 0.1.4
103+
uses: wabarc/.github/meilisearch@0c62d131c3884390bd63a2b7650a21fe16581bfe
92104
with:
93-
meilisearch-version: ${{ vars.MEILISEARCH_VERSION }}
94-
meilisearch-port: ${{ vars.MEILISEARCH_PORT }}
95-
meilisearch-api-key: ${{ vars.MEILISEARCH_APIKEY }}
105+
master-key: ${{ vars.MEILISEARCH_APIKEY }}
106+
port: ${{ vars.MEILISEARCH_PORT }}
96107

97108
- name: Set up Chocolatey
98109
if: matrix.os == 'windows-latest'
@@ -146,30 +157,12 @@ jobs:
146157
# echo "$(which you-get)" >> $GITHUB_PATH
147158
# echo "$(which ffmpeg)" >> $GITHUB_PATH
148159
# echo "$(which wget)" >> $GITHUB_PATH
149-
150-
- name: Set environments for Meilisearch
151-
if: matrix.os == 'ubuntu-latest'
152-
shell: bash
153-
run: |
154-
# Set env to enable reduxer
160+
# Set environments for Meilisearch to enable reduxer
155161
echo "WAYBACK_MEILI_ENDPOINT=${{ vars.WAYBACK_MEILI_ENDPOINT }}" >> $GITHUB_ENV
156162
echo "PLAYBACK_MEILI_ENDPOINT=${{ vars.WAYBACK_MEILI_ENDPOINT }}" >> $GITHUB_ENV
157163
echo "WAYBACK_MEILI_APIKEY=${{ vars.MEILISEARCH_APIKEY }}" >> $GITHUB_ENV
158164
echo "PLAYBACK_MEILI_APIKEY=${{ vars.MEILISEARCH_APIKEY }}" >> $GITHUB_ENV
159165
160-
- name: Check out code base
161-
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
162-
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
163-
with:
164-
fetch-depth: 0
165-
166-
- name: Check out code base
167-
if: github.event_name == 'pull_request'
168-
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
169-
with:
170-
fetch-depth: 0
171-
ref: ${{ github.event.pull_request.head.sha }}
172-
173166
- name: Cache go module
174167
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # v3.0.11
175168
with:

docs/changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2323
- Improve documentation ([#385](https://github.com/wabarc/wayback/pull/385))
2424
- Refactoring HTTP client for better consistency and maintainability ([#401](https://github.com/wabarc/wayback/pull/401))
2525
- ci: bump action version for page workflow
26+
- Replace meilisearch actions with `wabarc/.github/meilisearch` instead ([#491](https://github.com/wabarc/wayback/pull/491))
2627

2728
## [0.19.1] - 2023-03-21
2829

0 commit comments

Comments
 (0)