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
|
BUILD_DIR: ../build
|
||||||
steps:
|
steps:
|
||||||
- name: Install needed packages
|
- 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
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
- run: ./bootstrap
|
- run: ./bootstrap
|
||||||
|
|
Loading…
Reference in New Issue