Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
Getting rid of warnings during workflow run
  • Loading branch information
shqke committed Mar 17, 2023
1 parent 0244526 commit 8695cb0
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/main.yml
Expand Up @@ -71,52 +71,54 @@ jobs:
echo "CXX=clang++" >> $GITHUB_ENV
- name: Getting SourceMod ${{ matrix.sm_version }}
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: alliedmodders/sourcemod
ref: ${{ matrix.sm_branch }}
path: sourcemod-${{ matrix.sm_version }}
submodules: recursive

- name: Getting MM:Source ${{ matrix.meta_version }}
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: alliedmodders/metamod-source
ref: ${{ matrix.meta_branch }}
path: metamod-${{ matrix.meta_version }}

- name: Getting SteamWorks SDK
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: shqke/steamworks-sdk
ref: v1.55
path: steamworks-sdk
token: ${{ secrets.STEAMWORKS_REPO_ACCESS_TOKEN }}

- name: Setting up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Getting ambuild
run: |
python -m pip install wheel
pip install git+https://github.com/alliedmodders/ambuild
- name: Getting hl2sdk-l4d2
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: alliedmodders/hl2sdk
ref: l4d2
path: hl2sdk-l4d2

- name: Getting hl2sdk-l4d
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: alliedmodders/hl2sdk
ref: l4d
path: hl2sdk-l4d

- name: Getting own repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: src

Expand All @@ -135,7 +137,7 @@ jobs:
ambuild
- name: Uploading package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: sourcetvsupport-sm${{ matrix.sm_version }}-${{ matrix.os_short }}-${{ env.GITHUB_SHA_SHORT }}
path: src/build/package

0 comments on commit 8695cb0

Please sign in to comment.