Skip to content

Commit

Permalink
revert: Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dogukanoksuz committed Feb 19, 2024
1 parent 4333ca8 commit c9e5da9
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Getting Main Liman Repository
uses: actions/checkout@v4
uses: actions/checkout@v2
with:
path: package/liman/server

- name: Set up Liman Environment
uses: shivammathur/setup-php@v2
with:
Expand All @@ -19,11 +18,11 @@ jobs:

- name: Restore the Composer cache directory
id: composercache
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV

- uses: actions/cache@v4
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v3
with:
path: ${{ env.COMPOSER_CACHE_DIR }}
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-'8.1'-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-'8.1'-composer-

Expand Down Expand Up @@ -71,4 +70,4 @@ jobs:
${{ env.RELEASE_RPMFILENAME }}
name: "Release ${{ env.RELEASE_VER }} - ${{ env.RELEASE_RUNNUMBER }}"
tag_name: "release.${{ env.LIMAN_BRANCH }}.${{ env.RELEASE_RUNNUMBER }}"
prerelease: ${{ env.PRERELEASE }}
prerelease: ${{ env.PRERELEASE }}

0 comments on commit c9e5da9

Please sign in to comment.