Skip to content

Commit 0884560

Browse files
committed
add goreleaser write permission
1 parent 5884b7f commit 0884560

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/release_build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ on:
33
push:
44
tags:
55
- "*"
6+
permissions:
7+
contents: write
8+
69
jobs:
710
goreleaser:
811
runs-on: ubuntu-latest

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
- name: Prepare sqlite database
1212
run: make prepare-sqlite
1313
- name: Wait for docker containers to start
14-
run: sleep 30
14+
run: sleep 60
15+
- name: docker logs
16+
run: docker logs test-mermerd-mssql-test-db-1
1517
- name: Set up Go
1618
uses: actions/setup-go@v5
1719
with:

test/mssql/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# Source: https://cardano.github.io/blog/2017/11/15/mssql-docker-container
3-
wait_time=30s
3+
wait_time=60s
44
password=securePassword1!
55

66
# wait for SQL Server to come up

0 commit comments

Comments
 (0)