Skip to content

Commit

Permalink
Merge branch 'main' into server
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanHahn committed Oct 21, 2024
2 parents 719df6b + c4ae725 commit 1bb9c06
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- uses: nearform-actions/optic-release-automation-action@v4
with:
commit-message: 'Release {version}'
sync-semver-tags: true
sync-semver-tags: false
access: 'public'
# This prefix is added before the prerelease number, e.g. `v3.0.0-alpha.0`
# prerelease-prefix: 'alpha'
Expand Down
4 changes: 2 additions & 2 deletions test-e2e/manager-fastify-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ test('retrieving audio file', async (t) => {
await t.test('creating audio', async () => {
const blobId = await project.$blobs.create(
{ original: join(BLOB_FIXTURES_DIR, 'audio.mp3') },
blobMetadata({ mimeType: 'audio/mp3' })
blobMetadata({ mimeType: 'audio/mpeg' })
)
const blobUrl = await project.$blobs.getUrl({
...blobId,
Expand All @@ -320,7 +320,7 @@ test('retrieving audio file', async (t) => {
assert.equal(response.status, 200, 'response status ok')
assert.equal(
response.headers.get('content-type'),
'audio/mp3',
'audio/mpeg',
'matching content type header'
)
const expected = await fs.readFile(join(BLOB_FIXTURES_DIR, 'audio.mp3'))
Expand Down

0 comments on commit 1bb9c06

Please sign in to comment.