Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix github private token #4286

Open
wants to merge 35 commits into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
eb5ffe2
fix github private token
xlqian Jul 10, 2024
df6f373
second attempt to fix github private token
xlqian Jul 10, 2024
d045fba
second attempt to fix github private token
xlqian Jul 10, 2024
fa6ad99
second attempt to fix github private token
xlqian Jul 10, 2024
33c8a04
another attempt
xlqian Jul 10, 2024
eddc0bf
another attempt
xlqian Jul 10, 2024
36e2e44
another attempt
xlqian Jul 10, 2024
8be0abc
another attempt
xlqian Jul 10, 2024
9e55227
another attempt
xlqian Jul 10, 2024
ffa0605
another attempt
xlqian Jul 10, 2024
b447e34
another attempt
xlqian Jul 10, 2024
8f3fc1e
another attempt
xlqian Jul 10, 2024
9a16351
another attempt
xlqian Jul 10, 2024
1eecb28
another attempt
xlqian Jul 10, 2024
7b98a38
another attempt
xlqian Jul 10, 2024
f941beb
another attempt
xlqian Jul 10, 2024
4397797
another attempt
xlqian Jul 10, 2024
9d992f2
another attempt
xlqian Jul 10, 2024
92e5baa
another attempt
xlqian Jul 10, 2024
179afa8
another attempt
xlqian Jul 10, 2024
48acafc
another attempt
xlqian Jul 10, 2024
59297dd
another attempt
xlqian Jul 10, 2024
440346d
another attempt
xlqian Jul 10, 2024
8a94d9d
another attempt
xlqian Jul 10, 2024
10e0c9d
another attempt
xlqian Jul 10, 2024
96007a8
another attempt
xlqian Jul 10, 2024
769db29
another attempt
xlqian Jul 10, 2024
67601c4
another attempt
xlqian Jul 10, 2024
239c241
another attempt
xlqian Jul 10, 2024
0b6eae9
another attempt
xlqian Jul 10, 2024
12e41d6
another attempt
xlqian Jul 10, 2024
9a09b81
another attempt
xlqian Jul 10, 2024
ac2a9b7
another attempt
xlqian Jul 10, 2024
0a4b345
another attempt
xlqian Jul 10, 2024
f5c07a7
another attempt
xlqian Jul 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,12 @@ jobs:
run: chown -R $USER:$USER .
- name: Git config
run: git config --global --add safe.directory /__w/navitia/navitia
- name: Generate github private access token
id: ci-core-app-token
uses: getsentry/[email protected]
with:
app_id: ${{ secrets.CI_CORE_APP_ID }}
private_key: ${{ secrets.CI_CORE_APP_PEM }}


- uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ steps.ci-core-app-token.outputs.token }}
#token: ${{ steps.ci-core-app-token.outputs.token }}

- name: Config Github global url for ssh cases (add access token)
run: |
Expand Down Expand Up @@ -140,6 +135,7 @@ jobs:
run: chown -R $USER:$USER .
- name: Git config
run: git config --global --add safe.directory /__w/navitia/navitia

- name: Generate github private access token
id: ci-core-app-token
uses: getsentry/[email protected]
Expand All @@ -151,6 +147,7 @@ jobs:
with:
submodules: recursive
token: ${{ steps.ci-core-app-token.outputs.token }}

- name: Restore ccache
uses: hendrikmuhs/[email protected]
with:
Expand Down
Loading