Skip to content

Commit

Permalink
πŸ’Ύ Saved.
Browse files Browse the repository at this point in the history
  • Loading branch information
k33g committed Feb 20, 2024
1 parent 84a356f commit b767dfe
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions πŸš€
run-name: ${{ github.actor }} GitHub Actions πŸš€
on: [push]
jobs:
Explore-GitHub-Actions:
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/github-actions-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: GitHub Actions Demo
run-name: ${{ github.actor }} GitHub Actions πŸ“¦
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
env:
GO_ARCH: amd64
GO_VERSION: 1.21.3
steps:
- name: Install Go
run: |
apt-get update
apt-get install -y curl wget
wget https://golang.org/dl/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz
tar -xvf go${GO_VERSION}.linux-${GO_ARCH}.tar.gz
mv go /usr/local
rm go${GO_VERSION}.linux-${GO_ARCH}.tar.gz
export PATH="/usr/local/go/bin:${PATH}"
export GOPATH="/home/${USER_NAME}/go"
export GOROOT="/usr/local/go"
- run: go version
Go-Deeper-With-GitHub-Actions:
runs-on: ubuntu-latest
needs: Explore-GitHub-Actions
steps:
- run: echo "πŸ‘‹ hello world 🌍"
- run: go version
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-with-containers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: GitHub Actions With Containers
run-name: ${{ github.actor }} is testing out GitHub Actions πŸš€
run-name: ${{ github.actor }} GitHub Actions 🐳
on: [push]
jobs:
Explore-GitHub-Actions:
Expand Down

0 comments on commit b767dfe

Please sign in to comment.