Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zaoqi/github-actions-archlinux
Install Archlinux on Github Actions!
https://github.com/zaoqi/github-actions-archlinux
archlinux github-actions github-actions-ci
Last synced: about 1 month ago
JSON representation
Install Archlinux on Github Actions!
- Host: GitHub
- URL: https://github.com/zaoqi/github-actions-archlinux
- Owner: zaoqi
- License: agpl-3.0
- Created: 2019-10-03T18:30:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-18T16:57:24.000Z (over 3 years ago)
- Last Synced: 2024-11-22T01:41:46.532Z (about 2 months ago)
- Topics: archlinux, github-actions, github-actions-ci
- Language: Shell
- Homepage:
- Size: 57.6 KB
- Stars: 24
- Watchers: 3
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# github-actions-archlinux
Install Archlinux on Github Actions.## Example
[.github/workflows/ci.yml](.github/workflows/ci.yml)
```yaml
name: CIon: [push]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Install Archlinux
run: curl -L https://github.com/zaoqi/github-actions-archlinux/raw/master/install.sh | sh
- name: Docker hello-world
run: |
sudo pacman --noconfirm -Syu docker
sudo systemctl start docker
docker run --rm hello-world
```## Image
* [Dockerfile](Dockerfile)
* [Docker Hub](https://hub.docker.com/r/zaoqi/github-actions-archlinux)