Skip to content

Commit 9062840

Browse files
authored
refactor: replace old namespace references with game-ci (#5)
1 parent e630afa commit 9062840

7 files changed

+20
-20
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ workflows:
2121
exclude: SC2148,SC2038,SC2086,SC2002,SC2016
2222
filters: *filters
2323
- orb-tools/publish:
24-
orb-name: ericribeiro/unity
24+
orb-name: game-ci/unity
2525
vcs-type: << pipeline.project.type >>
2626
requires:
2727
[orb-tools/lint, orb-tools/review, orb-tools/pack, shellcheck/check]

.circleci/test-deploy.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: 2.1
22
orbs:
3-
unity: ericribeiro/unity@dev:<<pipeline.git.revision>>
3+
unity: game-ci/unity@dev:<<pipeline.git.revision>>
44
orb-tools: circleci/[email protected]
55

66
filters: &filters
@@ -166,18 +166,18 @@ workflows:
166166
- test:
167167
name: "test"
168168
step-name: "Check if the tests run and results are uploaded"
169-
unity-license-var-name: "ACTIVATION_ULF_ENC"
169+
unity-license-var-name: "UNITY_ENCODED_LICENSE_2021"
170170
executor:
171171
name: "unity/ubuntu-2021"
172172
target-platform: "linux-il2cpp"
173173
project-path: "Unity2D-Demo-Game-CI-CD/src"
174174
test-platform: "playmode"
175175
filters: *filters
176-
context: orb-unity-testing
176+
context: orb-testing-unity
177177
- build:
178178
name: "build-linux64"
179179
step-name: "Build StandaloneLinux64"
180-
unity-license-var-name: "ACTIVATION_ULF_ENC"
180+
unity-license-var-name: "UNITY_ENCODED_LICENSE_2021"
181181
executor:
182182
name: "unity/ubuntu-2021"
183183
target-platform: "linux-il2cpp"
@@ -187,11 +187,11 @@ workflows:
187187
requires:
188188
- test
189189
filters: *filters
190-
context: orb-unity-testing
190+
context: orb-testing-unity
191191
- build:
192192
name: "build-webgl"
193193
step-name: "Build WebGL"
194-
unity-license-var-name: "ACTIVATION_ULF_ENC"
194+
unity-license-var-name: "UNITY_ENCODED_LICENSE_2021"
195195
executor:
196196
name: "unity/ubuntu-2021"
197197
target-platform: "webgl"
@@ -201,11 +201,11 @@ workflows:
201201
requires:
202202
- test
203203
filters: *filters
204-
context: orb-unity-testing
204+
context: orb-testing-unity
205205
- build:
206206
name: "build-windows64"
207207
step-name: "Build StandaloneWindows64"
208-
unity-license-var-name: "ACTIVATION_ULF_ENC"
208+
unity-license-var-name: "UNITY_ENCODED_LICENSE_2021"
209209
executor:
210210
name: "unity/ubuntu-2021"
211211
target-platform: "windows-mono"
@@ -214,11 +214,11 @@ workflows:
214214
requires:
215215
- test
216216
filters: *filters
217-
context: orb-unity-testing
217+
context: orb-testing-unity
218218
- orb-tools/pack:
219219
filters: *filters
220220
- orb-tools/publish:
221-
orb-name: ericribeiro/unity
221+
orb-name: game-ci/unity
222222
vcs-type: << pipeline.project.type >>
223223
pub-type: production
224224
requires:

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 <organization>
3+
Copyright (c) 2022 game-ci
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
# Unity Orb
22

3-
[![CircleCI Build Status](https://circleci.com/gh/EricRibeiro/unity-orb.svg?style=shield "CircleCI Build Status")](https://circleci.com/gh/EricRibeiro/unity-orb) [![CircleCI Orb Version](https://badges.circleci.com/orbs/ericribeiro/unity.svg)](https://circleci.com/orbs/registry/orb/ericribeiro/unity) [![GitHub License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://raw.githubusercontent.com/EricRibeiro/unity-orb/master/LICENSE) [![CircleCI Community](https://img.shields.io/badge/community-CircleCI%20Discuss-343434.svg)](https://discuss.circleci.com/c/ecosystem/orbs)
3+
[![CircleCI Build Status](https://circleci.com/gh/game-ci/unity-orb.svg?style=shield "CircleCI Build Status")](https://circleci.com/gh/game-ci/unity-orb) [![CircleCI Orb Version](https://badges.circleci.com/orbs/game-ci/unity.svg)](https://circleci.com/orbs/registry/orb/game-ci/unity) [![GitHub License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://raw.githubusercontent.com/game-ci/unity-orb/master/LICENSE) [![CircleCI Community](https://img.shields.io/badge/community-CircleCI%20Discuss-343434.svg)](https://discuss.circleci.com/c/ecosystem/orbs)
44

55
Easily build and test your Unity project.
66

77
---
88

99
## Resources
1010

11-
[CircleCI Orb Registry Page](https://circleci.com/orbs/registry/orb/ericribeiro/unity) - The official registry page of this orb for all versions, executors, commands, and jobs described.
11+
[CircleCI Orb Registry Page](https://circleci.com/orbs/registry/orb/game-ci/unity) - The official registry page of this orb for all versions, executors, commands, and jobs described.
1212

1313
[CircleCI Orb Docs](https://circleci.com/docs/2.0/orb-intro/#section=configuration) - Docs for using, creating, and publishing CircleCI Orbs.
1414

1515
### How to Contribute
1616

17-
We welcome [issues](https://github.com/EricRibeiro/unity-orb/issues) to and [pull requests](https://github.com/EricRibeiro/unity-orb/pulls) against this repository!
17+
We welcome [issues](https://github.com/game-ci/unity-orb/issues) to and [pull requests](https://github.com/game-ci/unity-orb/pulls) against this repository!
1818

1919
### How to Publish An Update
2020
1. Merge pull requests with desired changes to the main branch.
2121
- For the best experience, squash-and-merge and use [Conventional Commit Messages](https://conventionalcommits.org/).
2222
2. Find the current version of the orb.
23-
- You can run `circleci orb info <namespace>/<orb-name> | grep "Latest"` to see the current version.
24-
3. Create a [new Release](https://github.com/EricRibeiro/unity-orb/releases/new) on GitHub.
23+
- You can run `circleci orb info game-ci/unity | grep "Latest"` to see the current version.
24+
3. Create a [new Release](https://github.com/game-ci/unity-orb/releases/new) on GitHub.
2525
- Click "Choose a tag" and _create_ a new [semantically versioned](http://semver.org/) tag. (ex: v1.0.0)
2626
- We will have an opportunity to change this before we publish if needed after the next step.
2727
4. Click _"+ Auto-generate release notes"_.

src/@orb.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ description: >
66
77
display:
88
home_url: "https://game.ci/docs"
9-
source_url: "https://github.com/EricRibeiro/unity-orb"
9+
source_url: "https://github.com/game-ci/unity-orb"

src/examples/test_and_build_personal_license.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ usage:
55
version: 2.1
66

77
orbs:
8-
unity: ericribeiro/[email protected]
8+
unity: game-ci/[email protected]
99

1010
workflows:
1111
test-build:

src/examples/test_and_build_pro_or_plus_license.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ usage:
55
version: 2.1
66

77
orbs:
8-
unity: ericribeiro/[email protected]
8+
unity: game-ci/[email protected]
99

1010
workflows:
1111
test-build:

0 commit comments

Comments
 (0)