Skip to content

Commit e90dff0

Browse files
committed
Build again
1 parent 71df6b3 commit e90dff0

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,3 @@ jobs:
6060
uses: ./.github/workflows/docker-multiarch.yml
6161
with:
6262
image-name: quantflow
63-
secrets:
64-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/docker-multiarch.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,12 @@ on:
66
image-name:
77
required: true
88
type: string
9-
secrets:
10-
GITHUB_TOKEN:
11-
required: true
129

1310
jobs:
1411
build-amd64:
1512
runs-on: ubuntu-latest
1613
env:
17-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
GITHUB_TOKEN: ${{ github.token }}
1815

1916
steps:
2017
- uses: actions/checkout@v4
@@ -23,7 +20,7 @@ jobs:
2320
with:
2421
registry: ghcr.io
2522
username: ${{ github.actor }}
26-
password: ${{ secrets.GITHUB_TOKEN }}
23+
password: ${{ github.token }}
2724
- name: install rops
2825
run: |
2926
curl -L https://raw.githubusercontent.com/quantmind/rops/main/dev/install-rops | bash
@@ -36,7 +33,7 @@ jobs:
3633
build-arm64:
3734
runs-on: ubuntu-24.04-arm
3835
env:
39-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
GITHUB_TOKEN: ${{ github.token }}
4037

4138
steps:
4239
- uses: actions/checkout@v4
@@ -45,7 +42,7 @@ jobs:
4542
with:
4643
registry: ghcr.io
4744
username: ${{ github.actor }}
48-
password: ${{ secrets.GITHUB_TOKEN }}
45+
password: ${{ github.token }}
4946
- name: install rops
5047
run: |
5148
curl -L https://raw.githubusercontent.com/quantmind/rops/main/dev/install-rops | bash
@@ -59,15 +56,15 @@ jobs:
5956
needs: [build-amd64, build-arm64]
6057
runs-on: ubuntu-latest
6158
env:
62-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59+
GITHUB_TOKEN: ${{ github.token }}
6360
steps:
6461
- uses: actions/checkout@v4
6562
- name: Login to GitHub Container Registry
6663
uses: docker/login-action@v3
6764
with:
6865
registry: ghcr.io
6966
username: ${{ github.actor }}
70-
password: ${{ secrets.GITHUB_TOKEN }}
67+
password: ${{ github.token }}
7168
- name: install rops
7269
run: |
7370
curl -L https://raw.githubusercontent.com/quantmind/rops/main/dev/install-rops | bash

0 commit comments

Comments
 (0)