From 02a1c3b8dda53b36371abe45d739e547e0115da3 Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Sat, 24 Aug 2019 13:10:18 +0200 Subject: [PATCH] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e800a3c..034b174 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,13 @@ An example workflow to authenticate with Google Cloud Platform: ```yaml jobs: build: - runs-on: ubuntu-16.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@master ... - - run: npm install - - uses: actions/checkout@master + - run: | + ... + - uses: ad-m/git-push-action@master ``` Subsequent actions in the workflow will then be able to use `gcloud` as that user ([see `cli` for examples](/cli)).