Skip to content

Commit

Permalink
Develop (#3)
Browse files Browse the repository at this point in the history
* Update CI

* Fix ci

* Update CI

* Update headers

* Create README.md

* Create LICENSE

* Add cuncurency

* Test
  • Loading branch information
aromanov91 authored Jul 24, 2024
1 parent 0730906 commit f394b18
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 10 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
name: CI

on:
pull_request:
branches:
- main
types:
- closed
push:
branches:
- main
- develop
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:

build-swiftpm:
name: Build SwiftPM
uses: oversizedev/GithubWorkflows/.github/workflows/build-swiftpm.yml@main
Expand Down
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Oversize

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# OversizeAppStoreServices
6 changes: 5 additions & 1 deletion Sources/OversizeAppStoreServices/Auth/EnvAuthenticator.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
//
// Copyright © 2024 Alexander Romanov
// EnvAuthenticator.swift, created on 22.07.2024
//

import AppStoreConnect
import Foundation

public struct EnvAuthenticator: Authenticator {
public enum Error: Swift.Error {
Expand Down
5 changes: 5 additions & 0 deletions Sources/OversizeAppStoreServices/Auth/Environment.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
//
// Copyright © 2024 Alexander Romanov
// Environment.swift, created on 22.07.2024
//

import Foundation

/// Environment wrapper that loads values from a local file, falling back on a `ProcessInfo`.
Expand Down
2 changes: 1 addition & 1 deletion Sources/OversizeAppStoreServices/Models/Build.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Copyright © 2024 Alexander Romanov
// File.swift, created on 22.07.2024
// Build.swift, created on 22.07.2024
//

import AppStoreConnect
Expand Down
2 changes: 1 addition & 1 deletion Sources/OversizeAppStoreServices/Models/Certificate.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Copyright © 2024 Alexander Romanov
// File.swift, created on 23.07.2024
// Certificate.swift, created on 23.07.2024
//

import AppStoreConnect
Expand Down
2 changes: 1 addition & 1 deletion Sources/OversizeAppStoreServices/Models/Version.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Copyright © 2024 Alexander Romanov
// File.swift, created on 23.07.2024
// Version.swift, created on 23.07.2024
//

import AppStoreConnect
Expand Down

0 comments on commit f394b18

Please sign in to comment.