diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-02-22 10:04:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-22 10:04:57 +0900 |
| commit | 12f13a12a7e6f4fd464dbb2161763d1f0c17c94f (patch) | |
| tree | 7688566e485077d68679e7c0a1d11b99c94ae27e | |
| parent | Merge pull request #128 from h-michael/rust-analyzer (diff) | |
| parent | gh actions: Add Dart lang to docgen action enviroment (diff) | |
| download | nvim-lspconfig-12f13a12a7e6f4fd464dbb2161763d1f0c17c94f.tar nvim-lspconfig-12f13a12a7e6f4fd464dbb2161763d1f0c17c94f.tar.gz nvim-lspconfig-12f13a12a7e6f4fd464dbb2161763d1f0c17c94f.tar.bz2 nvim-lspconfig-12f13a12a7e6f4fd464dbb2161763d1f0c17c94f.tar.lz nvim-lspconfig-12f13a12a7e6f4fd464dbb2161763d1f0c17c94f.tar.xz nvim-lspconfig-12f13a12a7e6f4fd464dbb2161763d1f0c17c94f.tar.zst nvim-lspconfig-12f13a12a7e6f4fd464dbb2161763d1f0c17c94f.zip | |
Merge pull request #140 from h-michael/gh-actions
gh actions: fix docgen action
| -rw-r--r-- | .github/workflows/docgen.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml index 78ccdf6c..1a19c7dc 100644 --- a/.github/workflows/docgen.yml +++ b/.github/workflows/docgen.yml @@ -7,6 +7,13 @@ jobs: runs-on: [ubuntu-latest] if: github.ref != 'master' steps: + - name: Setup Dart + run: | + sudo apt install apt-transport-https + sudo sh -c 'wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -' + sudo sh -c 'wget -qO- https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list' + sudo apt update + sudo apt install dart - uses: actions/checkout@v1 - run: date +%F > todays-date - name: Restore cache for today's nightly. |
