diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 004698b..767b250 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -23,4 +23,4 @@ jobs: runs-on: ubuntu-latest needs: Explore-GitHub-Actions steps: - - run: "👋 hello world 🌍" + - run: echo "👋 hello world 🌍" diff --git a/.github/workflows/github-actions-with-containers.yml b/.github/workflows/github-actions-with-containers.yml index 2698381..3ca9b44 100644 --- a/.github/workflows/github-actions-with-containers.yml +++ b/.github/workflows/github-actions-with-containers.yml @@ -9,6 +9,7 @@ jobs: steps: - run: go version - run: lsb_release -a + # todo use a go code Go-Deeper-With-GitHub-Actions: runs-on: ubuntu-latest @@ -16,5 +17,6 @@ jobs: image: philippecharriere494/my-ubuntu-go-nodejs-env:0.0.0 needs: Explore-GitHub-Actions steps: - - run: "👋 hello world 🌍" + - run: echo "👋 hello world 🌍" - run: node --version + # todo use a javascript code