Merge pull request #4 from nikita-bykov/migrate-go-versions

Migrate go versions
pull/12/head
Nikita Bykov 5 years ago committed by GitHub
commit ed913f1008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -76,7 +76,7 @@ jobs:
- name: Extract files - name: Extract files
run: | run: |
if ('${{ matrix.platform }}' -eq 'win32') { if ('${{ matrix.platform }}' -eq 'win32') {
$artifactName = "${{ env.ARTIFACT_NAME }}.7z" $artifactName = "${{ env.ARTIFACT_NAME }}.zip"
7z.exe x "$artifactName" -y | Out-Null 7z.exe x "$artifactName" -y | Out-Null
} else { } else {
$artifactName = "${{ env.ARTIFACT_NAME }}.tar.gz" $artifactName = "${{ env.ARTIFACT_NAME }}.tar.gz"
@ -165,8 +165,9 @@ jobs:
with: with:
github-token: ${{ secrets.PERSONAL_TOKEN }} github-token: ${{ secrets.PERSONAL_TOKEN }}
script: | script: |
github.repos.createDispatchEvent({ github.actions.createWorkflowDispatch({
owner: context.repo.owner, owner: context.repo.owner,
repo: context.repo.repo, repo: context.repo.repo,
event_type: 'create-pr' workflow_id: 'create-pr.yml',
}); ref: 'main'
});

Loading…
Cancel
Save