-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from github/release-updates
Release Updates
- Loading branch information
Showing
27 changed files
with
168 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- uses: ruby/setup-ruby@250fcd6a742febb1123a77a841497ccaa8b9e939 # [email protected] | ||
with: | ||
bundler-cache: true | ||
|
||
- name: bootstrap | ||
run: script/bootstrap | ||
|
||
- name: build | ||
run: | | ||
GEM_NAME=$(ls | grep gemspec | cut -d. -f1) | ||
echo "Attempting to build gem $GEM_NAME..." | ||
gem build $GEM_NAME | ||
if [ $? -eq 0 ]; then | ||
echo "Gem built successfully!" | ||
else | ||
echo "Gem build failed!" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,61 @@ | ||
name: Publish and Release Gem | ||
name: release | ||
|
||
on: | ||
push: | ||
branches: [ $default-branch ] | ||
paths: [ "VERSION" ] | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- lib/version.rb | ||
|
||
permissions: | ||
contents: write | ||
packages: write | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@8a45918450651f5e4784b6031db26f4b9f76b251 | ||
- uses: ruby/setup-ruby@250fcd6a742febb1123a77a841497ccaa8b9e939 # [email protected] | ||
with: | ||
bundler-cache: true | ||
|
||
- name: Run Tests | ||
- name: bootstrap | ||
run: script/bootstrap | ||
|
||
- name: lint | ||
run: bundle exec rubocop -c .rubocop.yml lib/ spec/ | ||
|
||
- name: test | ||
run: script/test | ||
|
||
- name: Build Gem | ||
- name: set GEM_NAME from gemspec | ||
run: echo "GEM_NAME=$(ls | grep gemspec | cut -d. -f1)" >> $GITHUB_ENV | ||
|
||
# builds the gem and saves the version to GITHUB_ENV | ||
- name: build | ||
run: echo "GEM_VERSION=$(gem build ${{ env.GEM_NAME }}.gemspec 2>&1 | grep Version | cut -d':' -f 2 | tr -d " \t\n\r")" >> $GITHUB_ENV | ||
|
||
- name: publish to GitHub packages | ||
run: | | ||
echo "GEM_VERSION=$(gem build entitlements-gitrepo-auditor-plugin.gemspec 2>&1 | grep Version | cut -d':' -f 2 | tr -d " \t\n\r")" >> $GITHUB_ENV | ||
- name: Publish to GitHub Packages | ||
export OWNER=$( echo ${{ github.repository }} | cut -d "/" -f 1 ) | ||
GEM_HOST_API_KEY=${{ secrets.GITHUB_TOKEN }} gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} ${{ env.GEM_NAME }}-${{ env.GEM_VERSION }}.gem | ||
- name: release | ||
uses: ncipollo/release-action@a2e71bdd4e7dab70ca26a852f29600c98b33153e # [email protected] | ||
with: | ||
artifacts: "${{ env.GEM_NAME }}-${{ env.GEM_VERSION }}.gem" | ||
tag: "v${{ env.GEM_VERSION }}" | ||
generateReleaseNotes: true | ||
|
||
- name: Publish to RubyGems | ||
run: | | ||
GEM_HOST_API_KEY=${{ secrets.GITHUB_TOKEN }} gem push --KEY github --host https://rubygems.pkg.github.com/github entitlements-gitrepo-auditor-plugin-${{ env.GEM_VERSION }}.gem | ||
mkdir -p ~/.gem | ||
echo -e "---\n:rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}" > ~/.gem/credentials | ||
chmod 0600 ~/.gem/credentials | ||
gem push ${{ env.GEM_NAME }}-${{ env.GEM_VERSION }}.gem | ||
rm ~/.gem/credentials |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative "lib/version" | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "entitlements-gitrepo-auditor-plugin" | ||
s.version = File.read("VERSION").chomp | ||
s.version = Entitlements::Version::VERSION | ||
s.summary = "Entitlements GitRepo Auditor" | ||
s.description = "" | ||
s.description = "Entitlements plugin for a robust audit log" | ||
s.authors = ["GitHub, Inc. Security Ops"] | ||
s.email = "[email protected]" | ||
s.license = "MIT" | ||
s.files = Dir.glob("lib/**/*") + %w[VERSION] | ||
s.files = Dir.glob("lib/**/*") | ||
s.homepage = "https://github.com/github/entitlements-gitrepo-auditor-plugin" | ||
s.executables = %w[] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# frozen_string_literal: true | ||
|
||
module Entitlements | ||
module Version | ||
VERSION = "0.3.0" | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.