try other docker #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: trigger-native | ||
on: | ||
push: | ||
branches: master | ||
paths: | ||
- 'org.alloytools.pardinus.native/native-code/**' | ||
- '.github/workflows/trigger-native.yaml' | ||
- '.github/workflows/subflow-*.yaml' | ||
jobs: | ||
electrod: | ||
uses: ./.github/workflows/subflow-electrod.yaml | ||
native: | ||
uses: ./.github/workflows/subflow-native.yaml | ||
Check failure on line 17 in .github/workflows/trigger-native.yaml
|
||
merge-natives: | ||
needs: [electrod,native] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
path: org.alloytools.pardinus.native/native | ||
merge-multiple: true | ||
- run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
- uses: peter-evans/create-pull-request@v6 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "Native code update request" | ||
title: "Native code update" | ||
delete-branch: true | ||
branch: native | ||
base: master |