Merge pull request #369 from yast/autosubmit_via_github_actions #628
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
# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: Surge | |
on: [push, pull_request] | |
jobs: | |
Publish: | |
runs-on: ubuntu-latest | |
container: | |
image: registry.opensuse.org/yast/head/containers_leap_latest/yast-ruby | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v2 | |
- name: Env | |
run: env | sort | |
- name: Prepare | |
run: | | |
zypper --non-interactive install --no-recommends aspell-devel npm zlib-devel gcc-c++ ruby-devel "rubygem(bundler)" | |
npm install surge | |
bundle install --path vendor/bundle || (echo "Gem installation failed, ensure 'bundled with:' is not present in Gemfile.lock"; false) | |
- name: Spell Check | |
run: bundle exec rake | |
- name: Deploy | |
run: bundle exec .github/workflows/deploy.rb | |
env: | |
GH_STATUS_TOKEN: ${{ secrets.GH_STATUS_TOKEN }} | |
SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }} | |
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }} |