Skip to content

Commit

Permalink
Merge branch 'main' into versioning-feature
Browse files Browse the repository at this point in the history
  • Loading branch information
amazonKamath authored Oct 18, 2024
2 parents 4e8da10 + 5c9cd01 commit 82c3906
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ jobs:
osx:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
name: 'Checkout'
with:
fetch-depth: 0 # Fetch all history
- name: List tags
run: |
git tag
- name: Install brew dependencies
run: |
brew install openssl@1.1 zlib cmake wget
Expand Down Expand Up @@ -56,7 +61,12 @@ jobs:
if: (github.event_name == 'push') || ((github.event_name == 'pull_request') && (github.event.pull_request.head.repo.full_name != github.repository))
steps:
- name: 'Checkout'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history
- name: List tags
run: |
git tag
- name: Install apt-get dependencies
run: |
sudo apt-get install -y build-essential git python3-dev
Expand Down Expand Up @@ -163,7 +173,12 @@ jobs:
nmake install
$env:Path += ";C:\Program Files (x86)\protobuf\bin"
- name: 'Checkout'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history
- name: List tags
run: |
git tag
- name: Build localproxy
working-directory: ${{ github.workspace }}
run: |
Expand Down

0 comments on commit 82c3906

Please sign in to comment.