Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-science
community
just-the-docs
Commits
7f5ebee9
Unverified
Commit
7f5ebee9
authored
Oct 14, 2020
by
Patrick Marsceill
Committed by
GitHub
Oct 14, 2020
Browse files
Delete publish.yml
parent
cb7df09c
Changes
1
Hide whitespace changes
Inline
Side-by-side
.github/workflows/publish.yml
deleted
100644 → 0
View file @
cb7df09c
name
:
Publish Gem
on
:
[
release
]
jobs
:
build
:
name
:
Build + Publish
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@master
-
name
:
Set up Ruby
2.6
uses
:
actions/setup-ruby@v1
with
:
version
:
2.6.x
-
name
:
Publish to GPR
run
:
|
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:github: Bearer ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build just-the-docs.gemspec
gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
env
:
GEM_HOST_API_KEY
:
${{secrets.GPR_AUTH_TOKEN}}
OWNER
:
pmarsceill
-
name
:
Publish to RubyGems
run
:
|
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
chmod 0600 $HOME/.gem/credentials
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
gem build just-the-docs.gemspec
gem push *.gem
env
:
GEM_HOST_API_KEY
:
${{secrets.RUBYGEMS_AUTH_TOKEN}}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment