Skip to content

Commit

Permalink
refactor: replace old namespace references with game-ci (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
GabLeRoux authored Apr 26, 2022
1 parent e630afa commit 9062840
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ workflows:
exclude: SC2148,SC2038,SC2086,SC2002,SC2016
filters: *filters
- orb-tools/publish:
orb-name: ericribeiro/unity
orb-name: game-ci/unity
vcs-type: << pipeline.project.type >>
requires:
[orb-tools/lint, orb-tools/review, orb-tools/pack, shellcheck/check]
Expand Down
20 changes: 10 additions & 10 deletions .circleci/test-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2.1
orbs:
unity: ericribeiro/unity@dev:<<pipeline.git.revision>>
unity: game-ci/unity@dev:<<pipeline.git.revision>>
orb-tools: circleci/[email protected]

filters: &filters
Expand Down Expand Up @@ -166,18 +166,18 @@ workflows:
- test:
name: "test"
step-name: "Check if the tests run and results are uploaded"
unity-license-var-name: "ACTIVATION_ULF_ENC"
unity-license-var-name: "UNITY_ENCODED_LICENSE_2021"
executor:
name: "unity/ubuntu-2021"
target-platform: "linux-il2cpp"
project-path: "Unity2D-Demo-Game-CI-CD/src"
test-platform: "playmode"
filters: *filters
context: orb-unity-testing
context: orb-testing-unity
- build:
name: "build-linux64"
step-name: "Build StandaloneLinux64"
unity-license-var-name: "ACTIVATION_ULF_ENC"
unity-license-var-name: "UNITY_ENCODED_LICENSE_2021"
executor:
name: "unity/ubuntu-2021"
target-platform: "linux-il2cpp"
Expand All @@ -187,11 +187,11 @@ workflows:
requires:
- test
filters: *filters
context: orb-unity-testing
context: orb-testing-unity
- build:
name: "build-webgl"
step-name: "Build WebGL"
unity-license-var-name: "ACTIVATION_ULF_ENC"
unity-license-var-name: "UNITY_ENCODED_LICENSE_2021"
executor:
name: "unity/ubuntu-2021"
target-platform: "webgl"
Expand All @@ -201,11 +201,11 @@ workflows:
requires:
- test
filters: *filters
context: orb-unity-testing
context: orb-testing-unity
- build:
name: "build-windows64"
step-name: "Build StandaloneWindows64"
unity-license-var-name: "ACTIVATION_ULF_ENC"
unity-license-var-name: "UNITY_ENCODED_LICENSE_2021"
executor:
name: "unity/ubuntu-2021"
target-platform: "windows-mono"
Expand All @@ -214,11 +214,11 @@ workflows:
requires:
- test
filters: *filters
context: orb-unity-testing
context: orb-testing-unity
- orb-tools/pack:
filters: *filters
- orb-tools/publish:
orb-name: ericribeiro/unity
orb-name: game-ci/unity
vcs-type: << pipeline.project.type >>
pub-type: production
requires:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
# Unity Orb

[![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)
[![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)

Easily build and test your Unity project.

---

## Resources

[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.
[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.

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

### How to Contribute

We welcome [issues](https://github.com/EricRibeiro/unity-orb/issues) to and [pull requests](https://github.com/EricRibeiro/unity-orb/pulls) against this repository!
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!

### How to Publish An Update
1. Merge pull requests with desired changes to the main branch.
- For the best experience, squash-and-merge and use [Conventional Commit Messages](https://conventionalcommits.org/).
2. Find the current version of the orb.
- You can run `circleci orb info <namespace>/<orb-name> | grep "Latest"` to see the current version.
3. Create a [new Release](https://github.com/EricRibeiro/unity-orb/releases/new) on GitHub.
- You can run `circleci orb info game-ci/unity | grep "Latest"` to see the current version.
3. Create a [new Release](https://github.com/game-ci/unity-orb/releases/new) on GitHub.
- Click "Choose a tag" and _create_ a new [semantically versioned](http://semver.org/) tag. (ex: v1.0.0)
- We will have an opportunity to change this before we publish if needed after the next step.
4. Click _"+ Auto-generate release notes"_.
Expand Down
2 changes: 1 addition & 1 deletion src/@orb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ description: >
display:
home_url: "https://game.ci/docs"
source_url: "https://github.com/EricRibeiro/unity-orb"
source_url: "https://github.com/game-ci/unity-orb"
2 changes: 1 addition & 1 deletion src/examples/test_and_build_personal_license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ usage:
version: 2.1

orbs:
unity: ericribeiro/[email protected]
unity: game-ci/[email protected]

workflows:
test-build:
Expand Down
2 changes: 1 addition & 1 deletion src/examples/test_and_build_pro_or_plus_license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ usage:
version: 2.1

orbs:
unity: ericribeiro/[email protected]
unity: game-ci/[email protected]

workflows:
test-build:
Expand Down

0 comments on commit 9062840

Please sign in to comment.