forked from aws4embeddedlinux/meta-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b0ee67
commit 58cac35
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,12 @@ jobs: | |
python3-jinja2 xterm python3-subunit zstd liblz4-tool | ||
git config --global user.name aws-iot-embedded-linux-ci | ||
git config --global user.email [email protected] | ||
git clone git://git.yoctoproject.org/poky -b ${{ GITHUB_REF_NAME }} | ||
git clone https://github.com/openembedded/meta-openembedded.git -b ${{ GITHUB_REF_NAME }} | ||
git clone git://git.yoctoproject.org/poky -b ${{ github.ref_name }} | ||
git clone https://github.com/openembedded/meta-openembedded.git -b ${{ github.ref_name }} | ||
- name: Clone Our Layer | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ GITHUB_REF_NAME }}-next | ||
ref: ${{ github.ref_name }}-next | ||
path: meta-aws | ||
fetch-depth: 0 | ||
- name: Clone CI Tolls Repo | ||
|
@@ -51,7 +51,7 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.BOT_CREDENTIAL }} | ||
run: | | ||
upgrader create-pulls --branch-file=../build/branches.txt --repo=${{ github.repository }} --target-branch=${{ GITHUB_REF_NAME }}-next --delay 300 | ||
upgrader create-pulls --branch-file=../build/branches.txt --repo=${{ github.repository }} --target-branch=${{ github.ref_name }}-next --delay 300 | ||
- name: Publish Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
|