We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be6bd45 + 687a265 commit ef1f4fbCopy full SHA for ef1f4fb
apt-get-install/action.yml
@@ -22,13 +22,14 @@ runs:
22
using: composite
23
steps:
24
- name: update
25
- if: runner.os == 'Linux'
+ if: runner.os == 'Linux' && env.uomRIT_aptget_update != 'done'
26
shell: bash
27
env:
28
CFGFILE: ${{ github.action_path }}/apt.conf
29
run: |
30
echo ::group::Update base system
31
sudo apt-get -c "$CFGFILE" update
32
+ echo "uomRIT_aptget_update=done" >> $GITHUB_ENV
33
echo ::endgroup::
34
- name: install packages
35
if: runner.os == 'Linux'
0 commit comments