Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mac-cain13/R.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlokhorst committed Dec 1, 2022
2 parents c77dce0 + e0c8bb9 commit 177bcee
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Pull cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .build
key: ${{ runner.os }}spm${{ hashFiles('**/Package.resolved') }}
Expand All @@ -30,9 +30,9 @@ jobs:
needs: build-rswift
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: rswift-dev
- name: Put build into place
Expand All @@ -41,7 +41,7 @@ jobs:
mv rswift-dev/rswift .build/release/rswift
chmod +x .build/release/rswift
- name: Pull cache
uses: actions/cache@v2
uses: actions/cache@v3
id: podcache-ios
with:
path: Examples/ResourceApp/Pods
Expand All @@ -60,9 +60,9 @@ jobs:
needs: build-rswift
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: rswift-dev
- name: Put build into place
Expand All @@ -79,9 +79,9 @@ jobs:
needs: build-rswift
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: rswift-dev
- name: Put build into place
Expand All @@ -97,9 +97,9 @@ jobs:
needs: build-rswift
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Download build
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: rswift-dev
- name: Put build into place
Expand All @@ -115,9 +115,9 @@ jobs:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Pull cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: .build
key: ${{ runner.os }}spm${{ hashFiles('**/Package.resolved') }}
Expand All @@ -129,7 +129,7 @@ jobs:
- name: Build
run: swift build -v -c release
- name: Store artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: rswift-dev
path: .build/release/rswift
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set version
run: |
sed -i "" "s/\(static let version = \"\).*\(\"\)/\1${TAG}\2/" Sources/rswift/Config.swift
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
run: |
codesign --force --options runtime --sign 'Developer ID Application: Mathijs Kadijk (5Z49PA849J)' .build/apple/Products/Release/rswift
- name: Store build artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: rswift-${{ github.event.release.tag_name }}
path: .build/apple/Products/Release/rswift
Expand Down

0 comments on commit 177bcee

Please sign in to comment.