Skip to content

Commit

Permalink
Remove container from website deployment workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingurney committed Mar 3, 2023
1 parent 067009b commit 41a0080
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/deploy.yml
Expand Up @@ -27,26 +27,13 @@ jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
container:
image: ubuntu:22.04 # Ubuntu 22.04 is the latest LTS version as of April 21, 2022: https://wiki.ubuntu.com/Releases
steps:
- name: Update package list
run: |
apt-get update -qq
- name: Install dependencies
run: |
apt-get install -qq -y jq rsync git libyaml-0-2 npm
- name: Checkout git repository
uses: actions/checkout@v3
- name: Set GitHub workspace as git safe.directory # Required to work around: https://github.com/actions/checkout/issues/766
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
env:
ImageOS: ubuntu22
- name: Install Node.js
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 41a0080

Please sign in to comment.