Skip to content

Commit c0038d5

Browse files
authored
fix(ci): use PAT for protected branch push and increase test timeout (#8)
1 parent 1d487ab commit c0038d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v4
3333
with:
34-
token: ${{ secrets.GITHUB_TOKEN }}
34+
token: ${{ secrets.RELEASE_TOKEN }}
3535

3636
- name: Configure git
3737
run: |

__tests__/generate-office-fonts-path.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ describe('generate_office_fonts path handling', () => {
9797
expect(result.status).toBe(0);
9898
expect(fs.existsSync(path.join(fontDataDir, 'AllFonts.js'))).toBe(true);
9999
expect(fs.existsSync(path.join(fontDataDir, 'font_selection.bin'))).toBe(true);
100-
});
100+
}, 15000);
101101

102102
test('should fail when generator exits 0 but does not write metadata files', () => {
103103
const root = makeTempDir('oo-editors-fontdata-');

0 commit comments

Comments
 (0)