Skip to content

Commit

Permalink
manifest: add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
davigamer987 committed Jan 9, 2024
1 parent 0256680 commit a0e4e13
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test AmogOS-Rom/android_manifest repository

on:
push:
branches: [ fourteen ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install repo tool
run: |
sudo apt-get update
sudo apt-get install -y git-core python3-pip wget
wget https://storage.googleapis.com/git-repo-downloads/repo && sudo mv repo /usr/bin/repo && sudo chmod a+x /usr/bin/repo
- name: Initialize and Sync Repo
run: |
repo init -u https://github.com/AmogOS-Rom/android_manifest.git -b staging/fourteen
timeout 1m repo sync || true
timeout-minutes: 6

0 comments on commit a0e4e13

Please sign in to comment.