Added 'apt-get update' to snapshot workflow (#635)
This commit is contained in:
parent
2ae1e88178
commit
f260fb8753
|
@ -14,7 +14,9 @@ jobs:
|
|||
BUILD_DIR: ../build
|
||||
steps:
|
||||
- name: Install needed packages
|
||||
run: sudo apt-get install autotools-dev autoconf automake libtool pkg-config cmake texinfo texlive g++-mingw-w64-i686
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install autotools-dev autoconf automake libtool pkg-config cmake texinfo texlive g++-mingw-w64-i686
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v1
|
||||
- run: ./bootstrap
|
||||
|
|
Loading…
Reference in New Issue