File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 77 - action/**
88 branches :
99 - main
10+ - gitlab
1011
1112jobs :
1213 docker :
3031 platforms : linux/amd64
3132 context : ./action
3233 file : ./action/Dockerfile
33- tags : ${{ secrets.DOCKERHUB_LINGODOTDEV_USERNAME }}/ci-action:latest
34+ tags : |
35+ ${{ secrets.DOCKERHUB_LINGODOTDEV_USERNAME }}/ci-action:latest
36+ ${{ secrets.DOCKERHUB_LINGODOTDEV_USERNAME }}/ci-action:${{ github.sha }}
Original file line number Diff line number Diff line change @@ -91,13 +91,10 @@ export class GitlabPlatformKit extends PlatformKit {
9191 }
9292
9393 gitConfig ( ) : Promise < void > | void {
94- const url = `https://gitlab-ci-token :${ this . platformConfig . glToken } @gitlab.com/${ this . platformConfig . repositoryOwner } /${ this . platformConfig . repositoryName } .git` ;
94+ const url = `https://oauth2 :${ this . platformConfig . glToken } @gitlab.com/${ this . platformConfig . repositoryOwner } /${ this . platformConfig . repositoryName } .git` ;
9595 execSync ( `git remote set-url origin ${ url } ` , {
9696 stdio : "inherit" ,
9797 } ) ;
98- execSync ( `git checkout -b ${ this . platformConfig . baseBranchName } ` , {
99- stdio : "inherit" ,
100- } ) ;
10198 }
10299
103100 buildPullRequestUrl ( pullRequestNumber : number ) : string {
You can’t perform that action at this time.
0 commit comments